From 40d6a93d9065e45f18c217e281936eff57ba37d6 Mon Sep 17 00:00:00 2001 From: Yuval Adam Date: Sat, 7 May 2011 03:08:47 +0300 Subject: finished c --- 2011/qual/d/b.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 2011/qual/d/b.py (limited to '2011/qual/d/b.py') 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 -- cgit v1.3.1