summaryrefslogtreecommitdiff
path: root/2011/qual/d/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/d/b.py
parent76aa2308ea962f204475409ee8f6f17055e6f719 (diff)
finished c
Diffstat (limited to '2011/qual/d/b.py')
-rw-r--r--2011/qual/d/b.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/2011/qual/d/b.py b/2011/qual/d/b.py
new file mode 100644
index 0000000..f9f028a
--- /dev/null
+++ b/2011/qual/d/b.py
@@ -0,0 +1,17 @@
+f = open('1.in', 'r')
+o = open('1.out', 'w')
+
+T = int(f.readline().strip())
+
+for t in xrange(T):
+ _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)
+
+f.close()
+o.close() \ No newline at end of file