summaryrefslogtreecommitdiff
path: root/2011/qual/b/b.py
diff options
context:
space:
mode:
authorYuval Adam <yuv.adm@gmail.com>2011-05-07 03:08:47 +0300
committerYuval Adam <yuv.adm@gmail.com>2011-05-07 03:08:47 +0300
commit40d6a93d9065e45f18c217e281936eff57ba37d6 (patch)
treec3171e9a3c185d42b0522d512df68b4eaa091b03 /2011/qual/b/b.py
parent76aa2308ea962f204475409ee8f6f17055e6f719 (diff)
finished c
Diffstat (limited to '2011/qual/b/b.py')
-rw-r--r--2011/qual/b/b.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/2011/qual/b/b.py b/2011/qual/b/b.py
index f3841a7..f9f028a 100644
--- a/2011/qual/b/b.py
+++ b/2011/qual/b/b.py
@@ -4,11 +4,14 @@ o = open('1.out', 'w')
T = int(f.readline().strip())
for t in xrange(T):
- (n, k) = map(int, f.readline().strip().split(' '))
+ _n = f.readline().strip().split(' ')
+ el = map(int, f.readline().strip().split(' '))
+
+ res = el
s = "Case #%d: %s\n" % (t+1, res)
- #print s
- o.write(s)
+ print s
+ #o.write(s)
f.close()
o.close() \ No newline at end of file