s_id
string
p_id
string
u_id
string
date
string
language
string
original_language
string
filename_ext
string
status
string
cpu_time
string
memory
string
code_size
string
code
string
error
string
stdout
string
s513331984
p02396
u156091054
1488783301
Python
Python3
py
Runtime Error
0
0
133
import sys while True: x = sys.stdin.readline().strip() if x == "0": break print("Case %d: %s"%(i, x)) i += 1
Traceback (most recent call last): File "/tmp/tmprclafvld/tmp1tvijtdb.py", line 6, in <module> print("Case %d: %s"%(i, x)) ^ NameError: name 'i' is not defined. Did you mean: 'id'?
s936162753
p02396
u897625141
1489467947
Python
Python3
py
Runtime Error
0
0
125
a = [] count = 0 while True: count += 1 n = input() if n == 0: break print("Case "+str(count)+": "+n)
Traceback (most recent call last): File "/tmp/tmp2b0zbm7o/tmps7muv0g1.py", line 5, in <module> n = input() ^^^^^^^ EOFError: EOF when reading a line
s411513426
p02396
u721446434
1489885122
Python
Python3
py
Runtime Error
0
0
122
i = 1 while True: hoge = input() if hoge == "": break print("Case " + str(i) + ": " + hoge) i += 1
Traceback (most recent call last): File "/tmp/tmpgbqw6qg0/tmpxx3b5bde.py", line 3, in <module> hoge = input() ^^^^^^^ EOFError: EOF when reading a line
s002423294
p02396
u721446434
1489885166
Python
Python3
py
Runtime Error
0
0
122
i = 1 while True: hoge = input() if hoge == "": break print("Case " + str(i) + ": " + hoge) i += 1
Traceback (most recent call last): File "/tmp/tmpdhwy_rqf/tmpt5x531nt.py", line 3, in <module> hoge = input() ^^^^^^^ EOFError: EOF when reading a line
s850321341
p02396
u679055873
1490234278
Python
Python3
py
Runtime Error
0
0
155
set = list(map(int,input().split())) index = 0 next = set[index] while next: print("Case "+str(index)+": "+str(set[index])) index += 1 next = set[index]
Traceback (most recent call last): File "/tmp/tmpnp7fa84h/tmp1hlknov8.py", line 1, in <module> set = list(map(int,input().split())) ^^^^^^^ EOFError: EOF when reading a line
s099440659
p02396
u679055873
1490239929
Python
Python3
py
Runtime Error
0
0
121
import sys cnt = 1 while 1: x = sys.stdin.readline().strip() if x == '0' break; print("Case %d: %s"%(cnt,x)) cnt+=1
File "/tmp/tmpkv7zyup9/tmpc3n0hf5c.py", line 5 if x == '0' ^ SyntaxError: expected ':'
s239218036
p02396
u679055873
1490240034
Python
Python3
py
Runtime Error
0
0
121
import sys cnt = 1 while 1: x = sys.stdin.readline().strip() if x == '0' break; print("Case %d: %s"%(cnt,x)) cnt+=1
File "/tmp/tmpmmezqmo2/tmpx40foryo.py", line 5 if x == '0' ^ SyntaxError: expected ':'
s412433628
p02396
u042882066
1490690875
Python
Python3
py
Runtime Error
0
0
113
count = 0 while True : if x == 0 : break x = int(input()) count += 1 print("Case {}: {}".format(count,x))
File "/tmp/tmpg_r6n9cu/tmpapnpwzga.py", line 5 x = int(input()) IndentationError: unexpected indent
s537682462
p02396
u042882066
1490690875
Python
Python3
py
Runtime Error
0
0
113
count = 0 while True : if x == 0 : break x = int(input()) count += 1 print("Case {}: {}".format(count,x))
File "/tmp/tmpaglv_vl1/tmpbzdxg04s.py", line 5 x = int(input()) IndentationError: unexpected indent
s727103903
p02396
u042882066
1490691093
Python
Python3
py
Runtime Error
0
0
114
count = 0 while True : x = int(input()) count += 1 if x == 0 : break print("Case { }: { }".format(count, x))
File "/tmp/tmp4hxqm3p7/tmpgixi1n46.py", line 6 if x == 0 : break IndentationError: unexpected indent
s158187284
p02396
u042882066
1490691094
Python
Python3
py
Runtime Error
0
0
114
count = 0 while True : x = int(input()) count += 1 if x == 0 : break print("Case { }: { }".format(count, x))
File "/tmp/tmpbg91umta/tmpuvpiik15.py", line 6 if x == 0 : break IndentationError: unexpected indent
s137778762
p02396
u042882066
1490691128
Python
Python3
py
Runtime Error
0
0
116
count = 0 while True : x = int(input()) count += 1 if x == 0 : break print("Case { }: { }".format(count, x))
File "/tmp/tmp3vtk_ah1/tmpa8uie805.py", line 6 if x == 0 : IndentationError: unexpected indent
s691138543
p02396
u042882066
1490691258
Python
Python3
py
Runtime Error
0
0
109
i = 0 while True: n = int(input()) i += 1 if n == 0:break print("Case {}: {}".format(i, n))
File "/tmp/tmphx9v1dd8/tmp4d85rmkr.py", line 4 i += 1 IndentationError: unexpected indent
s956088545
p02396
u042882066
1490691294
Python
Python3
py
Runtime Error
0
0
111
i = 0 while True: n = int(input()) if n == 0:break i += 1 print("Case {}: {}".format(i, n))
File "/tmp/tmp55llsdcv/tmp11rxw61m.py", line 7 i += 1 IndentationError: unexpected indent
s052328440
p02396
u042882066
1490691318
Python
Python3
py
Runtime Error
0
0
93
i = 0 while True: n = int(input()) if n == 0:break print("Case {}: {}".format(i, n)) i += 1
File "/tmp/tmpkzmxpj91/tmpqy6t551c.py", line 4 n = int(input()) ^ IndentationError: expected an indented block after 'while' statement on line 3
s874491444
p02396
u042882066
1490691328
Python
Python3
py
Runtime Error
0
0
99
i = 0 while True: n = int(input()) if n == 0:break print("Case {}: {}".format(i, n)) i += 1
File "/tmp/tmpmg_8bhsq/tmpoirjqj4a.py", line 7 print("Case {}: {}".format(i, n)) IndentationError: unexpected indent
s917962137
p02396
u042882066
1490691336
Python
Python3
py
Runtime Error
0
0
102
i = 0 while True: n = int(input()) if n == 0:break print("Case {}: {}".format(i, n)) i += 1
File "/tmp/tmp_d4t7ktz/tmp4jqp1fiw.py", line 5 if n == 0:break IndentationError: unexpected indent
s903703478
p02396
u042882066
1490691404
Python
Python3
py
Runtime Error
0
0
103
i = 0 while True: n = int(input()) if n == 0:break print("Case {}: {}".format(i, n)) i += 1
File "/tmp/tmpizxdu0op/tmpwxzpmxcg.py", line 5 if n == 0:break IndentationError: unexpected indent
s074447958
p02396
u606989659
1490864922
Python
Python3
py
Runtime Error
0
0
96
N = input() a = [] for i in range(N): a.append(input()) print('case'{}':'{}.format(N,a))
File "/tmp/tmpnh16vjhv/tmpa20fugki.py", line 5 print('case'{}':'{}.format(N,a)) ^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s439003495
p02396
u606989659
1490865120
Python
Python3
py
Runtime Error
0
0
94
N = input() a = [] for i in range(N): a.append(input()) print('case{}:{}'.format(N,a))
Traceback (most recent call last): File "/tmp/tmpk1r_bg4_/tmpj3gylvn1.py", line 1, in <module> N = input() ^^^^^^^ EOFError: EOF when reading a line
s810064914
p02396
u606989659
1490867189
Python
Python3
py
Runtime Error
0
0
94
x = input() a = [] for i in range(N): a.append(input()) print('case{}:{}'.format(x,a))
Traceback (most recent call last): File "/tmp/tmpyhoa4nl0/tmpmf94_jmt.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s350047297
p02396
u606989659
1491025172
Python
Python3
py
Runtime Error
0
0
129
import sys i = 1 while True: x = sys.stdin.read() if x == 0: break print('Case {}: {}'.format(i,x)) x + 1
Traceback (most recent call last): File "/tmp/tmpojdelfxn/tmpnwwhiyv8.py", line 8, in <module> x + 1 ~~^~~ TypeError: can only concatenate str (not "int") to str
Case 1:
s878659304
p02396
u606989659
1491025506
Python
Python3
py
Runtime Error
0
0
137
import sys i = 1 while True: x = sys.stdin.read() if x.strip() == 0: break print('Case {}: {}'.format(i,x)) x + 1
Traceback (most recent call last): File "/tmp/tmpxuf0ez09/tmpic0xiy32.py", line 8, in <module> x + 1 ~~^~~ TypeError: can only concatenate str (not "int") to str
Case 1:
s769757049
p02396
u606989659
1491045263
Python
Python3
py
Runtime Error
0
0
153
l = [] while True: x = input() if x == 0: break l.append(x) y = l.index(x) + 1 print('Case {}: {}'.format(y,x)) y + 1
Traceback (most recent call last): File "/tmp/tmp7_0_4sxc/tmp8wxv2kku.py", line 3, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s560337050
p02396
u606989659
1491045645
Python
Python3
py
Runtime Error
0
0
133
l = [] y = 1 while True: x = input() if x == 0: break l.append(x) print('Case {}: {}'.format(y,x)) y += 1
Traceback (most recent call last): File "/tmp/tmpiegnyt4l/tmpkh9nkks2.py", line 4, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s022182643
p02396
u382692819
1491290021
Python
Python3
py
Runtime Error
0
0
131
s = input.readline() i=1 while True: print("case {0}: {1}".format(i,s)) i += 1 s = input() if s=="0": break
Traceback (most recent call last): File "/tmp/tmpcsoghd8l/tmp2r44mbk_.py", line 1, in <module> s = input.readline() ^^^^^^^^^^^^^^ AttributeError: 'builtin_function_or_method' object has no attribute 'readline'
s524310438
p02396
u382692819
1491290135
Python
Python3
py
Runtime Error
0
0
217
with open ('in1.txt', 'r', encoding='utf8') as input: s = input.readline() i=1 while True: print("case {0}: {1}".format(i,s)) i += 1 s = input() if s=="0": break
Traceback (most recent call last): File "/tmp/tmpj9kp5ole/tmp1zi6fas1.py", line 1, in <module> with open ('in1.txt', 'r', encoding='utf8') as input: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ FileNotFoundError: [Errno 2] No such file or directory: 'in1.txt'
s982715039
p02396
u884445603
1492577703
Python
Python3
py
Runtime Error
0
0
152
while True: l = sorted([int(x) for x in input().split()]) if l[0] == 0 and l[1] == 0: break l.sort() print(" ".join(map(str,l)))
Traceback (most recent call last): File "/tmp/tmp359d003x/tmp2wq7x4_7.py", line 2, in <module> l = sorted([int(x) for x in input().split()]) ^^^^^^^ EOFError: EOF when reading a line
s012322297
p02396
u244790947
1493002008
Python
Python3
py
Runtime Error
0
0
195
inputs = [] for i in range(10000) : inputraw = input() if inputraw == '0' : break inputs.append(inputraw) for i, input in enumerate(inputs) : print("Case "+str(i)+": "+ str(input)+"\n"))
File "/tmp/tmps5h8dag1/tmpp6t0lhnx.py", line 11 print("Case "+str(i)+": "+ str(input)+"\n")) ^ SyntaxError: unmatched ')'
s622571090
p02396
u645985665
1493598495
Python
Python3
py
Runtime Error
0
0
154
import sys count = 1 while true: x = sys.stdin.readline().strip() if x == 0: break print("Case {}: {}".format(count,x)) count += 1
Traceback (most recent call last): File "/tmp/tmpvcghsu8g/tmp0okz6srs.py", line 3, in <module> while true: ^^^^ NameError: name 'true' is not defined. Did you mean: 'True'?
s000808132
p02396
u650790815
1495628651
Python
Python3
py
Runtime Error
0
0
147
import sys cnt = 1 while 1: x = sys.stdin.readline().strip() if x == '0': break; print('Case {}:{}').format(cnt,x) cnt += 1
Traceback (most recent call last): File "/tmp/tmpllctj4ko/tmpo44cu4o6.py", line 7, in <module> print('Case {}:{}').format(cnt,x) ^^^^^^^^^^^^^^^^^^^^^^^^^^ AttributeError: 'NoneType' object has no attribute 'format'
Case {}:{}
s759277555
p02396
u650790815
1495628820
Python
Python3
py
Runtime Error
0
0
147
import sys cnt = 1 while 1: x = sys.stdin.readline().strip() if x == '0': break; print('Case {}:{}').format(cnt,x) cnt += 1
Traceback (most recent call last): File "/tmp/tmprfxft4bm/tmp2e_lz_3t.py", line 7, in <module> print('Case {}:{}').format(cnt,x) ^^^^^^^^^^^^^^^^^^^^^^^^^^ AttributeError: 'NoneType' object has no attribute 'format'
Case {}:{}
s961743556
p02396
u440180827
1496135807
Python
Python3
py
Runtime Error
0
0
93
i = 1 x = input() while x: print('Case {0}: {1}'.format(i, x)) x = input() i += 1
Traceback (most recent call last): File "/tmp/tmpjsubiez6/tmpuf9i2sf5.py", line 2, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s595081441
p02396
u675844759
1496812073
Python
Python3
py
Runtime Error
0
0
146
cnt = 1 num = sys.stdin.readline().strip() while num != "0": print("Case "+ cnt + ": " num) cnt+=1 num = sys.stdin.readline().strip()
File "/tmp/tmp7q0w5was/tmpi8ya_ci4.py", line 4 print("Case "+ cnt + ": " num) ^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s723202722
p02396
u675844759
1496812096
Python
Python3
py
Runtime Error
0
0
157
import sys cnt = 1 num = sys.stdin.readline().strip() while num != "0": print("Case "+ cnt + ": " num) cnt+=1 num = sys.stdin.readline().strip()
File "/tmp/tmpyqwsqk63/tmp_o85sjuq.py", line 5 print("Case "+ cnt + ": " num) ^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s515468386
p02396
u675844759
1496812749
Python
Python3
py
Runtime Error
0
0
99
import sys for i, num in enumerate(sys.stdin.read().splitlines()) print("Case "+ i + ": " + num)
File "/tmp/tmpjtk06o8f/tmp_mbdu6v8.py", line 3 for i, num in enumerate(sys.stdin.read().splitlines()) ^ SyntaxError: expected ':'
s799074539
p02396
u675844759
1496812932
Python
Python3
py
Runtime Error
0
0
100
import sys for i, num in enumerate(sys.stdin.read().splitlines()): print("Case "+ i + ": " + num)
s098285680
p02396
u675844759
1496812953
Python
Python3
py
Runtime Error
0
0
101
import sys for i, num in enumerate(sys.stdin.read().splitlines()): print("Case "+ i + ": " + num)
s693379220
p02396
u675844759
1496813501
Python
Python3
py
Runtime Error
0
0
50
import sys for i in sys.stdin.read().splitlines()
File "/tmp/tmplersaz2k/tmpliaw3_0v.py", line 3 for i in sys.stdin.read().splitlines() ^ SyntaxError: expected ':'
s395952040
p02396
u675844759
1496813676
Python
Python3
py
Runtime Error
0
0
64
import sys array = sys.stdin.read().splitlines() for i in array
File "/tmp/tmp7nhxqfz1/tmpllrskv97.py", line 4 for i in array ^ SyntaxError: expected ':'
s314770391
p02396
u675844759
1496814187
Python
Python3
py
Runtime Error
0
0
101
import sys for i, num in enumerate(sys.stdin.read().splitlines()): print("Case "+ i + ": " + num)
s012246499
p02396
u675844759
1496814625
Python
Python3
py
Runtime Error
0
0
134
import sys cnt = 1 while 1 num=sys.stdin.readline().strip() if num = "0": break; print('Case {0}: {1}'.format(cnt, num)) cnt+=1
File "/tmp/tmp07ybkmkg/tmpogmgb74b.py", line 4 while 1 ^ SyntaxError: expected ':'
s697780099
p02396
u675844759
1496814651
Python
Python3
py
Runtime Error
0
0
133
import sys cnt = 1 while 1 num=sys.stdin.readline().strip() if num = "0": break print('Case {0}: {1}'.format(cnt, num)) cnt+=1
File "/tmp/tmpkf0jg10i/tmpvly1sgpj.py", line 4 while 1 ^ SyntaxError: expected ':'
s021218051
p02396
u675844759
1496814687
Python
Python3
py
Runtime Error
0
0
134
import sys cnt = 1 while 1: num=sys.stdin.readline().strip() if num = "0": break print('Case {0}: {1}'.format(cnt, num)) cnt+=1
File "/tmp/tmpg209nqx8/tmpfgv158ll.py", line 6 if num = "0": ^^^^^^^^^ SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
s716180733
p02396
u675844759
1496814774
Python
Python3
py
Runtime Error
0
0
135
import sys cnt = 1 while 1 num=sys.stdin.readline().strip() if num == "0": break; print('Case {0}: {1}'.format(cnt, num)) cnt+=1
File "/tmp/tmphgvyft76/tmp2g786d9_.py", line 4 while 1 ^ SyntaxError: expected ':'
s652458552
p02396
u239524997
1497162526
Python
Python
py
Runtime Error
0
0
97
a = 1 x = input() for i in x: if i ==0: continue print('Case',a,':',x) a += 1
Traceback (most recent call last): File "/tmp/tmpkvfqtzua/tmpcpqriyyq.py", line 2, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s476989497
p02396
u050103511
1497513378
Python
Python3
py
Runtime Error
0
0
120
x = list(int(input()) for i in range(x): for a in x: if x == 0: break print("Case"+" "+i+":"+x)
File "/tmp/tmpjwklc1xs/tmp4y4ekrqh.py", line 1 x = list(int(input()) ^ SyntaxError: '(' was never closed
s298467293
p02396
u050103511
1497513524
Python
Python3
py
Runtime Error
0
0
133
x = list(int(input()) for i in range(len(x)): for a in x: if x == 0: break print("Case {0}: {1}".format(i,a))
File "/tmp/tmpekwq5q2m/tmpeilnlr8k.py", line 1 x = list(int(input()) ^ SyntaxError: '(' was never closed
s707491988
p02396
u050103511
1497513577
Python
Python3
py
Runtime Error
0
0
132
x = list(int(input)) for i in range(len(x)): for a in x: if x == 0: break print("Case {0}: {1}".format(i,a))
Traceback (most recent call last): File "/tmp/tmpf9cbf86h/tmpmxmguw0i.py", line 1, in <module> x = list(int(input)) ^^^^^^^^^^ TypeError: int() argument must be a string, a bytes-like object or a real number, not 'builtin_function_or_method'
s324963089
p02396
u627002197
1497614440
Python
Python3
py
Runtime Error
0
0
163
N = input() input_data = [input() for i in range(N)] num = 0 while input_data[num] > 0 : print("Case","{0}:".format(num+1),"{1}".format(input_data[num])) num+=1
Traceback (most recent call last): File "/tmp/tmpzj50iajy/tmph8tqmxmk.py", line 1, in <module> N = input() ^^^^^^^ EOFError: EOF when reading a line
s402534061
p02396
u627002197
1497614468
Python
Python3
py
Runtime Error
0
0
167
N = input() input_data = [input() for i in range(N)]  num = 0 #while input_data[num] > 0 : # print("Case","{0}:".format(num+1),"{1}".format(input_data[num])) # num+=1
File "/tmp/tmpmugtqm0l/tmp5265_oqq.py", line 3  ^ SyntaxError: invalid non-printable character U+007F
s697858639
p02396
u627002197
1497614477
Python
Python3
py
Runtime Error
0
0
168
N = input() input_data = [input() for i in range(N)]  #num = 0 #while input_data[num] > 0 : # print("Case","{0}:".format(num+1),"{1}".format(input_data[num])) # num+=1
File "/tmp/tmp8_zcp4uz/tmpv_joosep.py", line 3  ^ SyntaxError: invalid non-printable character U+007F
s862425158
p02396
u627002197
1497614494
Python
Python3
py
Runtime Error
0
0
169
N = input() #input_data = [input() for i in range(N)]  #num = 0 #while input_data[num] > 0 : # print("Case","{0}:".format(num+1),"{1}".format(input_data[num])) # num+=1
File "/tmp/tmpixz5gea0/tmpf86p_7fg.py", line 3  ^ SyntaxError: invalid non-printable character U+007F
s998473974
p02396
u627002197
1497614506
Python
Python3
py
Runtime Error
0
0
170
#N = input() #input_data = [input() for i in range(N)]  #num = 0 #while input_data[num] > 0 : # print("Case","{0}:".format(num+1),"{1}".format(input_data[num])) # num+=1
File "/tmp/tmp828ufts7/tmpyc1eaade.py", line 3  ^ SyntaxError: invalid non-printable character U+007F
s252941126
p02396
u200401481
1497808533
Python
Python3
py
Runtime Error
0
0
66
i = 1 while a = input() != 0: print("Case "+str(i)+": "+str(a))
File "/tmp/tmpz0co__cv/tmpsn04snva.py", line 2 while a = input() != 0: ^^^^^^^^^^^ SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
s559051068
p02396
u200401481
1497808610
Python
Python3
py
Runtime Error
0
0
75
i = 1 a = 1 while a != 0: a = input() print("Case "+str(i)+": "+str(a))
Traceback (most recent call last): File "/tmp/tmpk8o73z6z/tmpux5jmfg7.py", line 4, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s473056724
p02396
u050103511
1498029145
Python
Python3
py
Runtime Error
0
0
150
x = int(input()) a = 1 for i in x: if i == 0: break print("Case {0}: {1}".format(a,i) a += 1
File "/tmp/tmph59qujzs/tmpqedjet82.py", line 6 print("Case {0}: {1}".format(a,i) ^ SyntaxError: '(' was never closed
s834356795
p02396
u050103511
1498029163
Python
Python3
py
Runtime Error
0
0
151
x = int(input()) a = 1 for i in x: if i == 0: break print("Case {0}: {1}".format(a,i)) a += 1
Traceback (most recent call last): File "/tmp/tmpm_oqs4zq/tmpy626d4hb.py", line 1, in <module> x = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s433919804
p02396
u050103511
1498029226
Python
Python3
py
Runtime Error
0
0
151
x = int(input()) a = 1 for i in x: if i == 0: break print("Case { }: { }".format(a,i)) a += 1
Traceback (most recent call last): File "/tmp/tmp1kept5fy/tmp29hd0kkv.py", line 1, in <module> x = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s454259285
p02396
u050103511
1498029262
Python
Python3
py
Runtime Error
0
0
149
x = int(input()) a = 1 for i in x: if i == 0: break print("Case {}: {}".format(a,i)) a += 1
Traceback (most recent call last): File "/tmp/tmphqjk5x9z/tmppr3zz9n9.py", line 1, in <module> x = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s714952309
p02396
u050103511
1498030293
Python
Python3
py
Runtime Error
0
0
177
import sys a = 1 While 1: x = sys.stdin.readline().strip() if x == 0: break; print("Case {0}: {1}".format(a,x)) a += 1
File "/tmp/tmp81l4k9jt/tmpthgglzri.py", line 3 While 1: ^ SyntaxError: invalid syntax
s664012605
p02396
u050103511
1498030385
Python
Python3
py
Runtime Error
0
0
180
import sys a = 1 While 1: x = sys.stdin.readline().strip() if x == "0": break; print("Case {0}: {1}".format(a,x)) a += 1
File "/tmp/tmprc46jlfo/tmpq93uf0jk.py", line 4 While 1: ^ SyntaxError: invalid syntax
s168294854
p02396
u050103511
1498030446
Python
Python3
py
Runtime Error
0
0
178
import sys a = 1 While 1: x = sys.stdin.readline().strip() if x == 0: break; print("Case {0}: {1}".format(a,x)) a += 1
File "/tmp/tmps4kohafa/tmpgb2t4jqc.py", line 4 While 1: ^ SyntaxError: invalid syntax
s240162969
p02396
u050103511
1498030694
Python
Python3
py
Runtime Error
0
0
145
import sys a = 1 for x in sys.stdin.strip(): if x == "0": break; print("Case {}: {}".format(a,x)) a += 1
Traceback (most recent call last): File "/tmp/tmpvc9u14jg/tmpah3mfa0l.py", line 4, in <module> for x in sys.stdin.strip(): ^^^^^^^^^^^^^^^ AttributeError: '_io.TextIOWrapper' object has no attribute 'strip'
s259790616
p02396
u050103511
1498030710
Python
Python3
py
Runtime Error
0
0
157
import sys a = 1 for x in sys.stdin.readlines().strip(): if x == "0": break; print("Case {}: {}".format(a,x)) a += 1
Traceback (most recent call last): File "/tmp/tmpucjsy2fr/tmp2bx1abf9.py", line 4, in <module> for x in sys.stdin.readlines().strip(): ^^^^^^^^^^^^^^^^^^^^^^^^^^^ AttributeError: 'list' object has no attribute 'strip'
s665306996
p02396
u569585396
1498090389
Python
Python3
py
Runtime Error
0
0
104
x = input().split() num = Case for i in range(1,10001): print("{} i : {}".format(num,x)) i += 1
Traceback (most recent call last): File "/tmp/tmpp43yjrbv/tmpv7o4gcx1.py", line 1, in <module> x = input().split() ^^^^^^^ EOFError: EOF when reading a line
s885194801
p02396
u569585396
1498091161
Python
Python3
py
Runtime Error
0
0
108
x = input().split() num = Case for i in range(1,10001): print("{} {} : {}".format(num,i,x)) i += 1
Traceback (most recent call last): File "/tmp/tmp1o1cfx_r/tmp9ina91z2.py", line 1, in <module> x = input().split() ^^^^^^^ EOFError: EOF when reading a line
s104715254
p02396
u569585396
1498091706
Python
Python3
py
Runtime Error
0
0
108
x = input().strip() num = Case for i in range(1,10001): print("{} {} : {}".format(num,i,x)) i += 1
Traceback (most recent call last): File "/tmp/tmpn7qtlxxt/tmpbizmcd3u.py", line 1, in <module> x = input().strip() ^^^^^^^ EOFError: EOF when reading a line
s677874516
p02396
u569585396
1498092596
Python
Python3
py
Runtime Error
0
0
146
n = int(input()) e = [[int(i) for i in input().split()] for i in range(n)] z = Case for i in range(1,10001): print('{} {} : {}',format(z,i,e))
Traceback (most recent call last): File "/tmp/tmp3c7edkgk/tmpllgkbpvj.py", line 1, in <module> n = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s679560437
p02396
u569585396
1498092935
Python
Python3
py
Runtime Error
0
0
134
x = input() y = [input() for i + 1 in range(x)] z = y.split() s = Case for a in ragen(1,10001): print('{} {} : {}',format(s,a,z))
File "/tmp/tmpihcpetkb/tmpf9djvlog.py", line 2 y = [input() for i + 1 in range(x)] ^^^^^ SyntaxError: cannot assign to expression
s207613694
p02396
u569585396
1498093380
Python
Python3
py
Runtime Error
0
0
146
x = input() y = [input() for i + 1 in range(x)] z = y.split() s = Case for a in range(1,10001): print('{} {} : {}',format(s,a,z)) a += 1
File "/tmp/tmpii841bke/tmpew1uko_u.py", line 2 y = [input() for i + 1 in range(x)] ^^^^^ SyntaxError: cannot assign to expression
s662063342
p02396
u569585396
1498093795
Python
Python3
py
Runtime Error
0
0
165
x = input() y = [input() for i + 1 in range(x)] z = y.split() s = Case count = 1 for a in range(1,10001): print('{} {} : {}',format(s,count,z)) count += 1
File "/tmp/tmpj7oxz8g8/tmp2knhr54a.py", line 2 y = [input() for i + 1 in range(x)] ^^^^^ SyntaxError: cannot assign to expression
s242203091
p02396
u569585396
1498094136
Python
Python3
py
Runtime Error
0
0
136
x = [input() for i in range(10001)] y = x.split() s = Case for a in range(1, 10001): print('{} {} : {}'.format(s,a,y)) a += 1
Traceback (most recent call last): File "/tmp/tmphb3t1n54/tmp3t61bgbv.py", line 1, in <module> x = [input() for i in range(10001)] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/tmp/tmphb3t1n54/tmp3t61bgbv.py", line 1, in <listcomp> x = [input() for i in range(10001)] ^^^^^^^ EOFError: EOF when rea...
s512362848
p02396
u569585396
1498094536
Python
Python3
py
Runtime Error
0
0
150
x = int(input()) X = [input() for i in range(x)] y = X.split() s = Case for a in range(1, 10001): print('{} {} : {}'.format(s,a,y)) a += 1
Traceback (most recent call last): File "/tmp/tmpc46w_nxx/tmp588sgv59.py", line 1, in <module> x = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s042991471
p02396
u569585396
1498094821
Python
Python3
py
Runtime Error
0
0
91
i = 1 while True: x = int(input()) print('Case {} : {}'.format(i, x)) i += 1
Traceback (most recent call last): File "/tmp/tmpedocl8u7/tmp4creuo2l.py", line 3, in <module> x = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s515884360
p02396
u569585396
1498094940
Python
Python3
py
Runtime Error
0
0
117
i = 1 while True: x = int(input()) if x == 0 break: print('Case {} : {}'.format(i, x)) i += 1
File "/tmp/tmph_33yr0b/tmp4h1t3mwd.py", line 4 if x == 0 break: ^^^^^ SyntaxError: invalid syntax
s436698486
p02396
u569585396
1498095021
Python
Python3
py
Runtime Error
0
0
113
i = 1 while True: x = int(input()) if x == 0 break: print('Case {} : {}'.format(i, x)) i += 1
File "/tmp/tmplvsmeo71/tmpikuv85eg.py", line 4 if x == 0 break: ^^^^^ SyntaxError: invalid syntax
s082827731
p02396
u569585396
1498095073
Python
Python3
py
Runtime Error
0
0
112
i = 1 while True: x = int(input()) if x == 0 break: print('Case {}: {}'.format(i, x)) i += 1
File "/tmp/tmpwjgkm70n/tmpehrme7wj.py", line 4 if x == 0 break: ^^^^^ SyntaxError: invalid syntax
s641747259
p02396
u890164142
1498195005
Python
Python3
py
Runtime Error
0
0
93
for i in range(10000) x = int(input()) if x == 0: break print("Case %d: %d" % (i+1, x))
File "/tmp/tmpg_e1o7cz/tmpfy3budgu.py", line 1 for i in range(10000) ^ SyntaxError: expected ':'
s114020533
p02396
u692161606
1498283709
Python
Python3
py
Runtime Error
0
0
30
print 'Case i: {0}'.format(x)
File "/tmp/tmpgqys08vw/tmpgolyls4m.py", line 1 print 'Case i: {0}'.format(x) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s601522831
p02396
u692161606
1498283908
Python
Python3
py
Runtime Error
0
0
58
if x >= 1 and x <=10000: print 'Case i: {0}'.format(x)
File "/tmp/tmpr_4kilwd/tmpa5700yp2.py", line 2 print 'Case i: {0}'.format(x) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s678689265
p02396
u692161606
1498284018
Python
Python3
py
Runtime Error
0
0
60
if x >= 1 and x <=10000: print ('Case i: {0}'.format(x))
Traceback (most recent call last): File "/tmp/tmpad_dlcvz/tmpel8daez3.py", line 1, in <module> if x >= 1 and x <=10000: ^ NameError: name 'x' is not defined
s888582022
p02396
u395668439
1498377675
Python
Python3
py
Runtime Error
0
0
70
i,x=1,input() while x !='0': print(f"Case {i}: {x}") i,x=i+1,input()
Traceback (most recent call last): File "/tmp/tmpehy_eqs8/tmpy724iphw.py", line 1, in <module> i,x=1,input() ^^^^^^^ EOFError: EOF when reading a line
s579658588
p02396
u395668439
1498377918
Python
Python3
py
Runtime Error
0
0
101
l=lambda: sys.stdin.readline().strip() i,x=1,l() while x !='0': print(f"Case {i}: {x}") i,x=i+1,l()
Traceback (most recent call last): File "/tmp/tmpigvyzem5/tmp6thpfkob.py", line 2, in <module> i,x=1,l() ^^^ File "/tmp/tmpigvyzem5/tmp6thpfkob.py", line 1, in <lambda> l=lambda: sys.stdin.readline().strip() ^^^ NameError: name 'sys' is not defined
s375427357
p02396
u395668439
1498377930
Python
Python3
py
Runtime Error
0
0
112
import sys l=lambda: sys.stdin.readline().strip() i,x=1,l() while x !='0': print(f"Case {i}: {x}") i,x=i+1,l()
Case 1: Case 2: Case 3: Case 4: Case 5: Case 6: Case 7: Case 8: Case 9: Case 10: Case 11: Case 12: Case 13: Case 14: Case 15: Case 16: Case 17: Case 18: Case 19: Case 20: Case 21: Case 22: Case 23: Case 24: Case 25: Case 26: Case 27: Case 28: Case 29: Case 30: Case 31: Case 32: Case 33: ...
s049849624
p02396
u169794024
1498528066
Python
Python3
py
Runtime Error
0
0
52
x=int,input() for v in range(x): print(case i : v)
File "/tmp/tmp6t3767og/tmpthugzz_g.py", line 4 print(case i : v) ^ SyntaxError: invalid syntax
s325358874
p02396
u169794024
1498528134
Python
Python3
py
Runtime Error
0
0
54
x=int,input() for v in range(x): print("case i :" v)
File "/tmp/tmprtmo_ho3/tmpt1rzux12.py", line 4 print("case i :" v) ^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s148802244
p02396
u169794024
1498528190
Python
Python3
py
Runtime Error
0
0
78
x=int,input() for v in range(x): for i in range(100000): print(case i : v)
File "/tmp/tmpc39t37ri/tmpg_vgmmdw.py", line 5 print(case i : v) ^ SyntaxError: invalid syntax
s606802245
p02396
u169794024
1498528250
Python
Python3
py
Runtime Error
0
0
78
x=int,input() for v in range(x): for i in range(100000): print(Case i : v)
File "/tmp/tmppy9_f9me/tmpsl38rxif.py", line 5 print(Case i : v) ^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s175995280
p02396
u169794024
1498611397
Python
Python3
py
Runtime Error
0
0
49
i,x = map(int,input().split()) print(case i : x)
File "/tmp/tmpmni1za6h/tmpd_1zs_8p.py", line 3 print(case i : x) ^ SyntaxError: invalid syntax
s499199195
p02396
u169794024
1498611433
Python
Python3
py
Runtime Error
0
0
52
i,x = map(int,input().split()): print(case i : x)
File "/tmp/tmpfs22qzz3/tmphlcu3llv.py", line 1 i,x = map(int,input().split()): ^ SyntaxError: invalid syntax
s134528360
p02396
u169794024
1498611602
Python
Python3
py
Runtime Error
0
0
74
i,x = map(int,input().split()): if x == 0; break print(case i : x)
File "/tmp/tmpb2rigdyk/tmpx5vy2o3r.py", line 1 i,x = map(int,input().split()): ^ SyntaxError: invalid syntax
s877169162
p02396
u169794024
1498611707
Python
Python3
py
Runtime Error
0
0
80
x =int(input()) for i in range(10000) if x == 0; break print(case i : x)
File "/tmp/tmpawa_c0er/tmpdg4w9m_i.py", line 2 for i in range(10000) ^ SyntaxError: expected ':'
s736257237
p02396
u169794024
1498611737
Python
Python3
py
Runtime Error
0
0
81
x =int(input()) for i in range(10000): if x == 0: break print(case i : x)
File "/tmp/tmprslvi18i/tmps5no4kv7.py", line 6 print(case i : x) ^ SyntaxError: invalid syntax
s950978853
p02396
u169794024
1498611779
Python
Python3
py
Runtime Error
0
0
83
x =int(input()) for i in range(1,10000): if x == 0: break print(case i : x)
File "/tmp/tmphagq_kof/tmp1jhtaagd.py", line 6 print(case i : x) ^ SyntaxError: invalid syntax
s572188575
p02396
u169794024
1498612086
Python
Python3
py
Runtime Error
0
0
87
for x in range(): for i in range(10000): if x == 0: break print(Case i : x)
File "/tmp/tmp4c36r2li/tmpnoemgwv8.py", line 7 print(Case i : x) ^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s746971804
p02396
u169794024
1498612129
Python
Python3
py
Runtime Error
0
0
85
x = int(input()) for i in range(10000): if x == 0: break print(Case i : x)
File "/tmp/tmpuyr0wbz0/tmp8imq1bk4.py", line 7 print(Case i : x) ^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s261462652
p02396
u169794024
1498612189
Python
Python3
py
Runtime Error
0
0
87
x = int(input()) for i in range(1,10000): if x == 0: break print(Case i : x)
File "/tmp/tmpr877iyvi/tmp9s_28oz4.py", line 7 print(Case i : x) ^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s188761894
p02396
u169794024
1498612525
Python
Python3
py
Runtime Error
0
0
78
i = 1 x=int(input()) if x==0: break print("case {0} : {1}" format(i,x)) i=+1
File "/tmp/tmpmecf340c/tmpt9dvcvk_.py", line 6 print("case {0} : {1}" format(i,x)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s396074772
p02396
u169794024
1498612566
Python
Python3
py
Runtime Error
0
0
78
i = 1 x=int(input()) if x==0: break print("case {0}: {1}" .format(i,x)) i=+1
File "/tmp/tmpv0lw19v7/tmp1gkl8fc8.py", line 5 break ^^^^^ SyntaxError: 'break' outside loop