diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2011-05-21 04:36:05 +0300 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2011-05-21 04:36:05 +0300 |
| commit | db98b1b5532f48b29925ce2a06b0dbffa004f292 (patch) | |
| tree | b29bd1221ea17d1006e385f55da3ddd4cbf7c180 /2011/1a/a/a.py | |
| parent | be520100012b1a11f9021940e5472c7813e5d4c7 (diff) | |
maybe this fix
Diffstat (limited to '2011/1a/a/a.py')
| -rw-r--r-- | 2011/1a/a/a.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/2011/1a/a/a.py b/2011/1a/a/a.py index 6978eb9..ed5d575 100644 --- a/2011/1a/a/a.py +++ b/2011/1a/a/a.py @@ -5,7 +5,7 @@ T = int(f.readline().strip()) for t in xrange(T): (N, PD, PG) = map(int, f.readline().strip().split(' ')) - res = 'Possible' if PD > PG else 'Broken' + res = 'Possible' if PD >= PG else 'Broken' s = "Case #%d: %s\n" % (t+1, res) print s o.write(s) |
