From db98b1b5532f48b29925ce2a06b0dbffa004f292 Mon Sep 17 00:00:00 2001 From: Yuval Adam Date: Sat, 21 May 2011 04:36:05 +0300 Subject: maybe this fix --- 2011/1a/a/a.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '2011/1a/a/a.py') 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) -- cgit v1.3.1