summaryrefslogtreecommitdiff
path: root/2011/1a/a/a.py
diff options
context:
space:
mode:
authorYuval Adam <yuv.adm@gmail.com>2011-05-21 04:35:32 +0300
committerYuval Adam <yuv.adm@gmail.com>2011-05-21 04:35:32 +0300
commitbe520100012b1a11f9021940e5472c7813e5d4c7 (patch)
tree42b8c441486812e5e7fd29f35f443b408cfc802a /2011/1a/a/a.py
parent74d843702ecdef0b751c536ea8c2f540df0b367f (diff)
second attempt FAIL
Diffstat (limited to '2011/1a/a/a.py')
-rw-r--r--2011/1a/a/a.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/2011/1a/a/a.py b/2011/1a/a/a.py
index 6d4bd1e..6978eb9 100644
--- a/2011/1a/a/a.py
+++ b/2011/1a/a/a.py
@@ -5,10 +5,6 @@ T = int(f.readline().strip())
for t in xrange(T):
(N, PD, PG) = map(int, f.readline().strip().split(' '))
-
- wt = N * PD / 100
- wy = N * PG / 100
-
res = 'Possible' if PD > PG else 'Broken'
s = "Case #%d: %s\n" % (t+1, res)
print s