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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s379364531 | p02396 | u498462680 | 1546252694 | Python | Python3 | py | Runtime Error | 0 | 0 | 141 | flg = 1
i=0
while flg:
i=i+1
Indata = input()
print("Case" +str(i) + ": " + str(Indata))
if Indata == 0:
flg=0
| Traceback (most recent call last):
File "/tmp/tmpaeo9fq1y/tmpprr4qz1u.py", line 5, in <module>
Indata = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s604285553 | p02396 | u498462680 | 1546252763 | Python | Python3 | py | Runtime Error | 0 | 0 | 136 | flg = 1
i=0
while flg:
i=i+1
Indata = input()
print("Case" +str(i) + ": " + Indata)
if Indata == 0:
flg=0
| Traceback (most recent call last):
File "/tmp/tmp2y1i72ma/tmp92akygsw.py", line 5, in <module>
Indata = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s869942303 | p02396 | u498462680 | 1546253273 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | i=0
while True:
i=i+1
Indata = input()
print("Case" +str(i) + ": " + Indata)
if Indata == 0:
break
| Traceback (most recent call last):
File "/tmp/tmp4cf7x68q/tmpe1aat6yj.py", line 4, in <module>
Indata = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s472592829 | p02396 | u498462680 | 1546253410 | Python | Python3 | py | Runtime Error | 0 | 0 | 138 | i=0
while True:
i=i+1
Indata = int(input())
print("Case" +str(i) + ": " + str(Indata)
if Indata == 0:
break
| File "/tmp/tmpueyg7kpz/tmpcxnlsbts.py", line 5
print("Case" +str(i) + ": " + str(Indata)
^
SyntaxError: '(' was never closed
| |
s342905428 | p02396 | u498462680 | 1546253546 | Python | Python3 | py | Runtime Error | 0 | 0 | 162 | i=0
while True:
i=i+1
Indata = int(input())
if Indata == 0:
break
else:
print("Case" +str(i) + ": " + str(Indata)
| File "/tmp/tmp1pvva6oi/tmps39imyc4.py", line 8
print("Case" +str(i) + ": " + str(Indata)
^
SyntaxError: '(' was never closed
| |
s326142512 | p02396 | u498462680 | 1546253606 | Python | Python3 | py | Runtime Error | 0 | 0 | 150 | i=0
while True:
Indata = int(input())
if Indata == 0:
break
else:
i=i+1
print("Case" +str(i) + ": " + str(Indata)
| File "/tmp/tmpmvmdot7n/tmppjdosftp.py", line 8
print("Case" +str(i) + ": " + str(Indata)
^
SyntaxError: '(' was never closed
| |
s760571248 | p02396 | u697703458 | 1546360607 | Python | Python3 | py | Runtime Error | 0 | 0 | 130 | count=0
while True:
count+=1
a=input()
if a==0:
break
else:
print("Case "+str(count)+": "+str(a))
| Traceback (most recent call last):
File "/tmp/tmpid0y5jtm/tmpo8wf8kc1.py", line 4, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s783195027 | p02396 | u697703458 | 1546360655 | Python | Python3 | py | Runtime Error | 0 | 0 | 131 | count=0
while True:
count+=1
a=input()
if a==0:
break
else:
print("Case "+str(count)+": "+str(a))
| Traceback (most recent call last):
File "/tmp/tmpit5vqwv7/tmplayblv7k.py", line 4, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s677230633 | p02396 | u697703458 | 1546360672 | Python | Python3 | py | Runtime Error | 0 | 0 | 131 | count=0
while True:
count+=1
a=input()
if a==0:
break
else:
print("Case "+str(count)+": "+str(a))
| Traceback (most recent call last):
File "/tmp/tmp1m8ngf9l/tmpxjilcnis.py", line 4, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s169756250 | p02396 | u697703458 | 1546360901 | Python | Python3 | py | Runtime Error | 0 | 0 | 131 | count=0
while True:
count+=1
a=input()
if a==0:
break
else:
print("Case "+str(count)+": "+str(a))
| Traceback (most recent call last):
File "/tmp/tmpj67r5dfx/tmpha2yq2ac.py", line 4, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s109888171 | p02396 | u697703458 | 1546360986 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | count=0
while 1:
count+=1
a=input()
if a==0:
break
else:
print("Case "+str(count)+": "+str(a))
| Traceback (most recent call last):
File "/tmp/tmp0g5ic0zs/tmploavlen4.py", line 4, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s343030508 | p02396 | u175224634 | 1551528106 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | i = 1
x = int(input())
for x in x:
if x == 0:
break
print(Case
i: x)
i += 1
| File "/tmp/tmp7qyqasja/tmpstvjyh0n.py", line 6
print(Case
^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s489803883 | p02396 | u175224634 | 1551528263 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | i = 1
x = int(input())
for x in x:
if x == 0:
break
print(Case
i: x)
i += 1
| File "/tmp/tmpf2x_m0os/tmphhc8_4d7.py", line 6
print(Case
^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s175577288 | p02396 | u175224634 | 1551528441 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | i = 1
x = int(input())
for y in x:
if x == 0:
break
print(f 'Case {i}: {y}')
i += 1
| File "/tmp/tmpkcgqj8pn/tmppdz4rwyq.py", line 6
print(f 'Case {i}: {y}')
^^^^^^^^^^^^^^^
SyntaxError: invalid syntax
| |
s149342672 | p02396 | u175224634 | 1551528500 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | i = 1
x = int(input())
for y in x:
if x == 0:
break
print(f 'Case {i}: {y}')
i += 1
| File "/tmp/tmpk05m63tb/tmpqnkfqsbc.py", line 6
print(f 'Case {i}: {y}')
^^^^^^^^^^^^^^^
SyntaxError: invalid syntax
| |
s865489957 | p02396 | u175224634 | 1551528621 | Python | Python3 | py | Runtime Error | 0 | 0 | 138 | i = 1
x = int(input())
for y in x:
if i == 0:
break
if i == 10000:
break
print(f 'Case {i}: {y}')
i += 1
| File "/tmp/tmpgwrzd7w0/tmp9qe4fnj1.py", line 8
print(f 'Case {i}: {y}')
^^^^^^^^^^^^^^^
SyntaxError: invalid syntax
| |
s783503504 | p02396 | u175224634 | 1551528642 | Python | Python3 | py | Runtime Error | 0 | 0 | 138 | i = 1
x = int(input())
for y in x:
if i == 0:
break
if i == 10000:
break
print(f 'Case {i}: {y}')
i += 1
| File "/tmp/tmpk1zt14eb/tmppbpgj5wu.py", line 8
print(f 'Case {i}: {y}')
^^^^^^^^^^^^^^^
SyntaxError: invalid syntax
| |
s385540994 | p02396 | u175224634 | 1551528887 | Python | Python3 | py | Runtime Error | 0 | 0 | 138 | i = 1
x = int(input())
for y in x:
if x == 0:
break
if i == 10000:
break
print(f 'Case {i}: {y}')
i += 1
| File "/tmp/tmp_4suukzf/tmpqawso3vw.py", line 8
print(f 'Case {i}: {y}')
^^^^^^^^^^^^^^^
SyntaxError: invalid syntax
| |
s318090775 | p02396 | u175224634 | 1551528916 | Python | Python3 | py | Runtime Error | 0 | 0 | 138 | i = 1
x = int(input())
for y in x:
if y == 0:
break
if i == 10000:
break
print(f 'Case {i}: {y}')
i += 1
| File "/tmp/tmpg8ij20_7/tmpdhwj9xi5.py", line 8
print(f 'Case {i}: {y}')
^^^^^^^^^^^^^^^
SyntaxError: invalid syntax
| |
s311809481 | p02396 | u175224634 | 1551528947 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | i = 1
x = int(input())
for y in x:
if y == 0:
break
print(f 'Case {i}: {y}')
i += 1
| File "/tmp/tmpqvlwq4pt/tmp5x_ieem8.py", line 6
print(f 'Case {i}: {y}')
^^^^^^^^^^^^^^^
SyntaxError: invalid syntax
| |
s339719044 | p02396 | u175224634 | 1551528985 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | i = 1
x = int(input())
for y in x:
if y == 0:
break
print(f 'Case {i}: {y}')
i += 1
| File "/tmp/tmpyjs7cn5b/tmpzfsy2i6n.py", line 6
print(f 'Case {i}: {y}')
^^^^^^^^^^^^^^^
SyntaxError: invalid syntax
| |
s187333424 | p02396 | u175224634 | 1551529185 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | i = 1
x = int(input())
while:
if y == 0:
break
print(f 'Case {i}: {x[y]}')
i += 1
| File "/tmp/tmpznn51w53/tmp6ljrgi70.py", line 3
while:
^
SyntaxError: invalid syntax
| |
s000634548 | p02396 | u175224634 | 1551529217 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | i = 1
x = int(input())
while:
if y == 0:
break
print(f 'Case {i}: {x[y]}')
i += 1
| File "/tmp/tmpy9in9pwg/tmpwwjacaln.py", line 3
while:
^
SyntaxError: invalid syntax
| |
s715767537 | p02396 | u175224634 | 1551530949 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | i = 1
x = int(input())
while:
if y == 0:
break
print(f 'Case {i}: {x[y]}')
i += 1
| File "/tmp/tmpvw7lnpck/tmphz3fc4wz.py", line 3
while:
^
SyntaxError: invalid syntax
| |
s488701155 | p02396 | u984892564 | 1551539620 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | n = 1
while n <= 10000
x = input('Case {0}:'.format(n))
if int(x) == 0:
break
| File "/tmp/tmpqa9d9kig/tmpvk4ei95d.py", line 2
while n <= 10000
^
SyntaxError: expected ':'
| |
s334823282 | p02396 | u984892564 | 1551539628 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | n = 1
while n < 10000
x = input('Case {0}:'.format(n))
if int(x) == 0:
break
| File "/tmp/tmpdrg9eafi/tmp5pydmssk.py", line 2
while n < 10000
^
SyntaxError: expected ':'
| |
s141929157 | p02396 | u344890307 | 1555729208 | Python | Python3 | py | Runtime Error | 0 | 0 | 229 | """
Print Test Cases
"""
def main():
i = 1
while True:
x = int(raw_input().strip())
if x == 0:
break
print "Case %d: %d" % (i, x)
i += 1
if __name__ == '__main__':
main()
| File "/tmp/tmp63mcjy_g/tmph8u3mpxc.py", line 11
print "Case %d: %d" % (i, x)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s950700400 | p02396 | u928633434 | 1555812248 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | i = 1
while true
x = input()
if x == 0:
break
print ("Case " + str(i) + ": " + str(x))
i += 1
| File "/tmp/tmpsw04e7gi/tmp1d5odo4y.py", line 3
while true
^
SyntaxError: expected ':'
| |
s997644273 | p02396 | u928633434 | 1555812264 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | i = 1
while true:
x = input()
if x == 0:
break
print ("Case " + str(i) + ": " + str(x))
i += 1
| Traceback (most recent call last):
File "/tmp/tmpm4slt8yh/tmpnlgzjvc3.py", line 3, in <module>
while true:
^^^^
NameError: name 'true' is not defined. Did you mean: 'True'?
| |
s435473636 | p02396 | u761491190 | 1555907294 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | c = 1
x = int(input())
while true:
print("Case {0}: {1}".format(c,x)})
c += 1
| File "/tmp/tmpx3ge6zfi/tmpxz0vlush.py", line 4
print("Case {0}: {1}".format(c,x)})
^
SyntaxError: closing parenthesis '}' does not match opening parenthesis '('
| |
s840528781 | p02396 | u525395303 | 1555911721 | Python | Python3 | py | Runtime Error | 0 | 0 | 2 | l
| Traceback (most recent call last):
File "/tmp/tmp5kbfb0k3/tmpl24xgu5h.py", line 1, in <module>
l
NameError: name 'l' is not defined
| |
s674611838 | p02396 | u525395303 | 1555911827 | Python | Python3 | py | Runtime Error | 0 | 0 | 2 | k
| Traceback (most recent call last):
File "/tmp/tmp7dmicfqi/tmppf3iam4y.py", line 1, in <module>
k
NameError: name 'k' is not defined
| |
s233691525 | p02396 | u525395303 | 1555912073 | Python | Python3 | py | Runtime Error | 0 | 0 | 38 | You are not allowed to see this code.
| File "/tmp/tmpzfd25ri4/tmprpsnhqng.py", line 1
You are not allowed to see this code.
^^^
SyntaxError: invalid syntax
| |
s043174064 | p02396 | u525395303 | 1555912099 | Python | Python3 | py | Runtime Error | 0 | 0 | 38 | You are not allowed to see this code.
| File "/tmp/tmpfbde3liy/tmpw8f80o0o.py", line 1
You are not allowed to see this code.
^^^
SyntaxError: invalid syntax
| |
s449800214 | p02396 | u607723579 | 1555912115 | Python | Python3 | py | Runtime Error | 0 | 0 | 142 |
x=int(input())
int i=0;
while(1){
scanf("%d", &x);
if(x==0)break;
printf("Case %d: %d\n", ++i, x);
| File "/tmp/tmp77qzqsf4/tmpq08q85bd.py", line 2
x=int(input())
IndentationError: unexpected indent
| |
s883550259 | p02396 | u525395303 | 1555912193 | Python | Python3 | py | Runtime Error | 0 | 0 | 38 | You are not allowed to see this code.
| File "/tmp/tmpet2zd_20/tmpnzvx6li3.py", line 1
You are not allowed to see this code.
^^^
SyntaxError: invalid syntax
| |
s151343664 | p02396 | u525395303 | 1555912275 | Python | Python3 | py | Runtime Error | 0 | 0 | 3 | l
| Traceback (most recent call last):
File "/tmp/tmpdh0x6ign/tmp5stsebok.py", line 1, in <module>
l
NameError: name 'l' is not defined
| |
s909574104 | p02396 | u651717882 | 1555952004 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | a =0
while True:
n =int(input())
i=i+1
if n==0:
break
print("Case"+str(i)+": "+str(n))
| Traceback (most recent call last):
File "/tmp/tmplu4s2pv5/tmpqq53turr.py", line 3, in <module>
n =int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s797938540 | p02396 | u651717882 | 1555952071 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | a =0
while True:
n =int(input())
i=i+1
if n==0:
break
else:
print("Case"+str(i)+": "+str(n))
| Traceback (most recent call last):
File "/tmp/tmpd0r20d7t/tmp9z137gyl.py", line 3, in <module>
n =int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s688519500 | p02396 | u651717882 | 1555952254 | Python | Python3 | py | Runtime Error | 0 | 0 | 136 | a =0
while True:
n =int(input())
i=i+1
if n==0:
break
else:
print("Case" + str(i)+": "+str(n))
| Traceback (most recent call last):
File "/tmp/tmphf_4pjyz/tmpn7mwfc64.py", line 3, in <module>
n =int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s165147480 | p02396 | u651717882 | 1555952280 | Python | Python3 | py | Runtime Error | 0 | 0 | 135 | a =0
while True:
n =int(input())
i+=1
if n==0:
break
else:
print("Case" + str(i)+": "+str(n))
| Traceback (most recent call last):
File "/tmp/tmp4eojzv39/tmpdfx7qdou.py", line 3, in <module>
n =int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s471441792 | p02396 | u651717882 | 1555952379 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | i=0
while True:
a=int(input())
i+=1
if a==0:
break
else:
print("Case" + str(i)+": "+str(a))
| File "/tmp/tmppzg108zh/tmpb9mmfucc.py", line 4
i+=1
^
IndentationError: unindent does not match any outer indentation level
| |
s330580517 | p02396 | u651717882 | 1555952433 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | i=0
while True:
n=int(input())
i+=1
if n==0:
break
else:
print("Case" + str(i)+": "+str(n))
| File "/tmp/tmpixkzaq4q/tmpr3v6re69.py", line 4
i+=1
^
IndentationError: unindent does not match any outer indentation level
| |
s185046530 | p02396 | u651717882 | 1555952502 | Python | Python3 | py | Runtime Error | 0 | 0 | 141 | i = 0
while True:
n = int(input())
i +=1
if n == 0:
break
else:
print("Case" + str(i)+": "+str(n))
| File "/tmp/tmpq8mqldb_/tmpd612nj_p.py", line 4
i +=1
^
IndentationError: unindent does not match any outer indentation level
| |
s848764566 | p02396 | u093488647 | 1555996388 | Python | Python3 | py | Runtime Error | 0 | 0 | 158 | input = -1
cnt = 1
output = []
while input != 0:
input = input()
if input == 0:
break
output += "Case " + cnt + ": " + input
for x in output:
print(x)
| Traceback (most recent call last):
File "/tmp/tmps_mj78ww/tmpzi8i_qhz.py", line 5, in <module>
input = input()
^^^^^^^
TypeError: 'int' object is not callable
| |
s997020584 | p02396 | u037441960 | 1556005171 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | i = 0
while True :
x = int(input())
if(x is none) :
break
else :
i += 1
print("Case i:", x)
| Traceback (most recent call last):
File "/tmp/tmpjytcglg2/tmp904fwa6x.py", line 3, in <module>
x = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s045316036 | p02396 | u037441960 | 1556005267 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | i = 0
while True :
x = int(input())
if(x is none) :
break
else :
i += 1
print("Case i:", x)
| File "/tmp/tmp3f7_82m1/tmpsh7f37pv.py", line 4
if(x is none) :
IndentationError: unexpected indent
| |
s961750368 | p02396 | u037441960 | 1556005348 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | i = 0
while True :
x = int(input())
if(x == 0) :
break
else :
i += 1
print("Case i:", x)
| File "/tmp/tmp75z7qan8/tmpc5g7bnos.py", line 4
if(x == 0) :
IndentationError: unexpected indent
| |
s302551113 | p02396 | u037441960 | 1556026674 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | i = 0
while True :
x = int(input())
if(x == 0) :
break
else :
i += 1
print("Case", i, ":", x)
| File "/tmp/tmp0thi7bog/tmplaz02wcb.py", line 4
if(x == 0) :
IndentationError: unexpected indent
| |
s815572290 | p02396 | u252054808 | 1556169509 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | i = 0
while(True):
print("Case %d: %s" % (i+1, input()))
i+=1
| Traceback (most recent call last):
File "/tmp/tmpskk1o2cc/tmpsofnqbvf.py", line 3, in <module>
print("Case %d: %s" % (i+1, input()))
^^^^^^^
EOFError: EOF when reading a line
| |
s223515584 | p02396 | u252054808 | 1556169537 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | i = 0
while(True):
s = input()
print("Case %d: %s" % (i+1, s))
i+=1
| Traceback (most recent call last):
File "/tmp/tmps2t95x4p/tmpk7z_47bp.py", line 3, in <module>
s = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s831617351 | p02396 | u681232780 | 1556179112 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | i = 1
while True :
x = int(input())
if x = = 0 :
break
print('Case',i,':',x)
i = i + 1
| File "/tmp/tmpbo52gxii/tmpfy9thyop.py", line 4
if x = = 0 :
^
SyntaxError: invalid syntax
| |
s697928085 | p02396 | u681232780 | 1556179141 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | i = 1
while True :
x = int(input())
if x = = 0 :
break
print('Case',i':',x)
i = i + 1
| File "/tmp/tmpe4x8szf9/tmph4bc0o4y.py", line 4
if x = = 0 :
^
SyntaxError: invalid syntax
| |
s301218760 | p02396 | u681232780 | 1556179152 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | i = 1
while True :
x = int(input())
if x = = 0 :
break
print('Case',I,':',x)
i = i + 1
| File "/tmp/tmp3lvfse81/tmph8alx_xt.py", line 4
if x = = 0 :
^
SyntaxError: invalid syntax
| |
s221366045 | p02396 | u592815095 | 1556195308 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | n=int(input())
for i in range(10**9)
print("Case "+str(i+1)+": "+str(n))
n=int(input())
| File "/tmp/tmp80y3dcyv/tmpkq4262ii.py", line 2
for i in range(10**9)
^
SyntaxError: expected ':'
| |
s710409327 | p02396 | u592815095 | 1556195326 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | n=int(input())
for i in range(10**9)
print("Case "+str(i+1)+": "+str(n))
n=int(input())
if n==0:exit()
| File "/tmp/tmpkzrp64p9/tmpx_79k3c5.py", line 2
for i in range(10**9)
^
SyntaxError: expected ':'
| |
s909874054 | p02396 | u482227082 | 1556409957 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | for i in range(10000):
line = input()
if line == "0":
break
else:
print('Case %d: %s', % (i, line) )
| File "/tmp/tmpkb2jbrxg/tmp3r4l8qn3.py", line 6
print('Case %d: %s', % (i, line) )
^
SyntaxError: invalid syntax
| |
s957082255 | p02396 | u482227082 | 1556409983 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | for i in range(10000):
line = input()
if line == "0":
break
else:
print('Case %d: %s', % (i, line))
| File "/tmp/tmpe416rpw_/tmps8w1awc6.py", line 6
print('Case %d: %s', % (i, line))
^
SyntaxError: invalid syntax
| |
s080245775 | p02396 | u482227082 | 1556410057 | Python | Python3 | py | Runtime Error | 0 | 0 | 127 | for i in range(10000):
line = input()
if line == "0":
break
else:
print('Case %d: %s', %(i, line))
| File "/tmp/tmpo_l815y3/tmpl7iiz9mo.py", line 6
print('Case %d: %s', %(i, line))
^
SyntaxError: invalid syntax
| |
s163277915 | p02396 | u482227082 | 1556410084 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | for i in range(1,10001):
line = input()
if line == "0":
break
else:
print('Case %d: %s', %(i, line))
| File "/tmp/tmpmqppue4v/tmp_l1eugw0.py", line 6
print('Case %d: %s', %(i, line))
^
SyntaxError: invalid syntax
| |
s352675204 | p02396 | u482227082 | 1556410172 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | for i in range(1,10001):
line = input()
if line == "0":
break
else:
print('Case %d: %s', %(i, line))
| File "/tmp/tmpn7uc6sj1/tmpny2dm_oh.py", line 6
print('Case %d: %s', %(i, line))
^
SyntaxError: invalid syntax
| |
s967337310 | p02396 | u482227082 | 1556410218 | Python | Python3 | py | Runtime Error | 0 | 0 | 127 | for i in range(1,10001):
line = input()
if line == 0:
break
else:
print('Case %d: %s', %(i, line))
| File "/tmp/tmpdrr2k5nc/tmpjvajqtsy.py", line 6
print('Case %d: %s', %(i, line))
^
SyntaxError: invalid syntax
| |
s804268128 | p02396 | u482227082 | 1556410289 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | for i in range(1,10001):
line = input()
if line == "0":
break
else:
print('Case %s: %s', %(i, line))
| File "/tmp/tmppf7ny30p/tmpavsf0vuw.py", line 6
print('Case %s: %s', %(i, line))
^
SyntaxError: invalid syntax
| |
s081174429 | p02396 | u482227082 | 1556410309 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | for i in range(1,10001):
line = input()
if line == "0":
break
else:
print('Case %i: %s', %(i, line))
| File "/tmp/tmp9k7q8f82/tmp3p6i8qn0.py", line 6
print('Case %i: %s', %(i, line))
^
SyntaxError: invalid syntax
| |
s299292461 | p02396 | u482227082 | 1556410561 | Python | Python3 | py | Runtime Error | 0 | 0 | 124 | for i in range(1,10000):
x = int(input())
if x == 0:
break:
else:
print('Case %i: %i' % (i, x))
| File "/tmp/tmpwbf6y3co/tmpxhk2huj9.py", line 4
break:
^
SyntaxError: invalid syntax
| |
s174855545 | p02396 | u482227082 | 1556410791 | Python | Python3 | py | Runtime Error | 0 | 0 | 124 | for i in range(1,10000):
x = int(input())
if x == 0:
break:
else:
print("Case %d: %d" % (i, x))
| File "/tmp/tmp7u5yniab/tmp104a3frc.py", line 4
break:
^
SyntaxError: invalid syntax
| |
s072844726 | p02396 | u482227082 | 1556410836 | Python | Python3 | py | Runtime Error | 0 | 0 | 157 |
#for i in range(1,10000):
i = 1
while True:
x = int(input())
if x == 0:
break:
else:
print("Case %d: %d" % (i, x))
i++
| File "/tmp/tmppctw4yq3/tmpkis2aj2q.py", line 8
break:
^
SyntaxError: invalid syntax
| |
s584765300 | p02396 | u482227082 | 1556410859 | Python | Python3 | py | Runtime Error | 0 | 0 | 156 | #for i in range(1,10000):
i = 1
while True:
x = int(input())
if x == 0:
break:
else:
print("Case %d: %d" % (i, x))
i++
| File "/tmp/tmph4c60s2_/tmpq_karn6z.py", line 7
break:
^
SyntaxError: invalid syntax
| |
s247787904 | p02396 | u108130680 | 1556619716 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | while True:
x,y = map(int, input().split())
if x == 0 and y == 0:
break
if x > y:
print(y, x)
else:
print(x, y)
| File "/tmp/tmp1ish8k92/tmppj1keenz.py", line 4
break
^
IndentationError: expected an indented block after 'if' statement on line 3
| |
s417202128 | p02396 | u610816226 | 1556624722 | Python | Python3 | py | Runtime Error | 0 | 0 | 135 | i = 0
While True:
x = int(input())
if x == 0:
break
else:
i += 1
print('Case {}: {}'.format(i, x))
| File "/tmp/tmpogbgh8it/tmp7kqip2xb.py", line 2
While True:
^^^^
SyntaxError: invalid syntax
| |
s798445432 | p02396 | u994696641 | 1556702580 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | c = 1
while True:
x = input()
print("Case ", c, ": ", ) if x != 0 else return
c += 1
| File "/tmp/tmpg223c3_u/tmp84i1t7el.py", line 4
print("Case ", c, ": ", ) if x != 0 else return
^^^^^^
SyntaxError: invalid syntax
| |
s597742587 | p02396 | u994696641 | 1556702599 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | c = 1
while True:
x = input()
print("Case ", c, ": ", x) if x != 0 else return
c += 1
| File "/tmp/tmppt3vygoi/tmp5a2oz3eb.py", line 4
print("Case ", c, ": ", x) if x != 0 else return
^^^^^^
SyntaxError: invalid syntax
| |
s565663709 | p02396 | u994696641 | 1556702693 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | c = 1
while True:
x = input()
if x == 0 else return
print("Case ", c, ": ", x)
c += 1
| File "/tmp/tmpllrdf274/tmpft0f1ujq.py", line 4
if x == 0 else return
^^^^
SyntaxError: invalid syntax
| |
s853900335 | p02396 | u994696641 | 1556702701 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | c = 1
while True:
x = input()
if x == 0 else break
print("Case ", c, ": ", x)
c += 1
| File "/tmp/tmpsm1o2aar/tmpm0iwmo1n.py", line 4
if x == 0 else break
^^^^
SyntaxError: invalid syntax
| |
s698289114 | p02396 | u994696641 | 1556702717 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | c = 1
while True:
x = input()
if x == 0: break
print("Case ", c, ": ", x)
c += 1
| Traceback (most recent call last):
File "/tmp/tmp2wdtvqlq/tmpedld5i2k.py", line 3, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s718770094 | p02396 | u994696641 | 1556702976 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | c = 1
while True:
x = int(input())
if x == 0: return
print("Case {}: {}".format(c, x))
c += 1
| File "/tmp/tmpxw9kiesi/tmpemo9xoo1.py", line 4
if x == 0: return
^^^^^^
SyntaxError: 'return' outside function
| |
s846410525 | p02396 | u777181309 | 1556761610 | Python | Python3 | py | Runtime Error | 0 | 0 | 127 | i = 0
while True:
num = int(input())
if num == 0:
break
print('Case {}': num.format(i, num))
i++
| File "/tmp/tmpzobnwtbc/tmp8a_xwfr4.py", line 7
print('Case {}': num.format(i, num))
^
SyntaxError: invalid syntax
| |
s937732113 | p02396 | u777181309 | 1556761697 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | i = 0
while True:
num = int(input())
if num == 0:
break
print('Case {}: {}'.format(i, num))
i++
| File "/tmp/tmpb4g4wrxq/tmpgq6czq3a.py", line 8
i++
^
SyntaxError: invalid syntax
| |
s100820151 | p02396 | u596870465 | 1558935206 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | for i in range(10000):
x = int(input())
if (x == 0):
break
print("Case ",i+1, ": ",x)
| File "/tmp/tmphh5599jr/tmpr9uygdx2.py", line 3
if (x == 0):
IndentationError: unexpected indent
| |
s796868240 | p02396 | u520674325 | 1559019795 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | int i = 1
while(true):
x = int(input())
if(x == 0):
break
print('case {0}: {1}'.format(i,x))
i++
| File "/tmp/tmpwms5mr2j/tmpb0qy21uo.py", line 1
int i = 1
^
SyntaxError: invalid syntax
| |
s692398578 | p02396 | u520674325 | 1559019899 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | int i = 1
while true:
x = int(input())
if(x == 0):
break
print('case {0}: {1}'.format(i,x))
i++
| File "/tmp/tmpxewclopc/tmpdg12jpkl.py", line 1
int i = 1
^
SyntaxError: invalid syntax
| |
s265196974 | p02396 | u520674325 | 1559019929 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | int i = 1
while true:
x = int(input())
if(x == 0):
break
print('case {0}: {1}'.format(i,x))
i = i+1
| File "/tmp/tmpav6ttwkw/tmp21odmvhu.py", line 1
int i = 1
^
SyntaxError: invalid syntax
| |
s314919003 | p02396 | u520674325 | 1559019945 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | int i = 1
while true:
x = int(input())
if x == 0:
break
print('case {0}: {1}'.format(i,x))
i = i+1
| File "/tmp/tmppyirpygm/tmpu81vvvrn.py", line 1
int i = 1
^
SyntaxError: invalid syntax
| |
s672356885 | p02396 | u520674325 | 1559019979 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | i = 1
while true:
x = int(input())
if x == 0:
break
print('case {0}: {1}'.format(i,x))
i = i+1
| Traceback (most recent call last):
File "/tmp/tmpetarlnwp/tmptcfe9y60.py", line 2, in <module>
while true:
^^^^
NameError: name 'true' is not defined. Did you mean: 'True'?
| |
s323873951 | p02396 | u520674325 | 1559020285 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | i = 1
while true:
x = int(input())
if x == 0:
break
print('case %d: %d' % (i,x))
i +=1
| Traceback (most recent call last):
File "/tmp/tmpipmnd2af/tmprap02oc5.py", line 2, in <module>
while true:
^^^^
NameError: name 'true' is not defined. Did you mean: 'True'?
| |
s440742997 | p02396 | u520674325 | 1559020313 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | i = 1
while true:
x = int(input())
if x == 0:
break
print('case %d: %d' % (i,x))
i +=1
| Traceback (most recent call last):
File "/tmp/tmpyf1qnpyq/tmp7ucgwgoa.py", line 2, in <module>
while true:
^^^^
NameError: name 'true' is not defined. Did you mean: 'True'?
| |
s142787824 | p02396 | u629874472 | 1559027938 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | while True:
i = 1
print('Case '+str(i)+': '+input())
i +=1
| Traceback (most recent call last):
File "/tmp/tmphg7crxn0/tmp19b48zne.py", line 3, in <module>
print('Case '+str(i)+': '+input())
^^^^^^^
EOFError: EOF when reading a line
| |
s293557559 | p02396 | u629874472 | 1559028136 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | i = 1
while True:
print('Case '+str(i)+': '+input())
i +=1
| Traceback (most recent call last):
File "/tmp/tmpy8ghrzw9/tmpe7gqnnzw.py", line 3, in <module>
print('Case '+str(i)+': '+input())
^^^^^^^
EOFError: EOF when reading a line
| |
s268515238 | p02396 | u629874472 | 1559028274 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | i = 1
while True:
a = input()
if a ==0:
break
else:
print('Case '+str(i)+': '+a)
i +=1
| Traceback (most recent call last):
File "/tmp/tmpk2rg95o4/tmpc24ysc5g.py", line 3, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s768661778 | p02396 | u535719732 | 1559194203 | Python | Python3 | py | Runtime Error | 0 | 0 | 143 | list = []
while True:
if(int(input()) == 0): break
else: list.append(input())
for i in list:
print("Case %d:%d" %(i,list[i]))
| Traceback (most recent call last):
File "/tmp/tmphiiaonew/tmp7p_94gev.py", line 3, in <module>
if(int(input()) == 0): break
^^^^^^^
EOFError: EOF when reading a line
| |
s452590653 | p02396 | u535719732 | 1559194254 | Python | Python3 | py | Runtime Error | 0 | 0 | 148 | list = []
while True:
if(int(input()) == 0): break
else: list.append(input())
for i in len(list):
print("Case %d:%d" %(i,list[i]))
| Traceback (most recent call last):
File "/tmp/tmpmwz5qe0d/tmpjaito2mb.py", line 3, in <module>
if(int(input()) == 0): break
^^^^^^^
EOFError: EOF when reading a line
| |
s189572642 | p02396 | u535719732 | 1559194268 | Python | Python3 | py | Runtime Error | 0 | 0 | 155 | list = []
while True:
if(int(input()) == 0): break
else: list.append(input())
for i in range(len(list)):
print("Case %d:%d" %(i,list[i]))
| Traceback (most recent call last):
File "/tmp/tmp9at1wvt9/tmpk4z5gsbk.py", line 3, in <module>
if(int(input()) == 0): break
^^^^^^^
EOFError: EOF when reading a line
| |
s788584882 | p02396 | u535719732 | 1559194315 | Python | Python3 | py | Runtime Error | 0 | 0 | 157 | list = []
while True:
if(int(input()) == 0): break
else: list.append(input())
c = 0
for i in list:
c = c + 1
print("Case %d:%d" %(c,i))
| Traceback (most recent call last):
File "/tmp/tmpmtqji6c9/tmp7ok_fy4n.py", line 3, in <module>
if(int(input()) == 0): break
^^^^^^^
EOFError: EOF when reading a line
| |
s674282235 | p02396 | u535719732 | 1559194356 | Python | Python3 | py | Runtime Error | 0 | 0 | 154 | list = []
while True:
if(int(input()) == 0): break
else: list.append(int(input()))
for i in len(list):
print("Case %d:%d" %(i,list[i]))
| Traceback (most recent call last):
File "/tmp/tmpoadrkz8e/tmplec7eyyn.py", line 3, in <module>
if(int(input()) == 0): break
^^^^^^^
EOFError: EOF when reading a line
| |
s871215808 | p02396 | u839788696 | 1559362436 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | n =[]
i = list(map(int, input().split()))
N = len[i]
| Traceback (most recent call last):
File "/tmp/tmpth0sfvo5/tmp9gfs3i4f.py", line 3, in <module>
i = list(map(int, input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s692706847 | p02396 | u015712946 | 1559524202 | Python | Python3 | py | Runtime Error | 0 | 0 | 136 | while True:
x = int(input().split())
if x == 0:
break
print("Case ", c, ": ", x, sep="")
c += 1 # c = c + 1 の略記法
| Traceback (most recent call last):
File "/tmp/tmpgbqgz96j/tmpu0wo2nro.py", line 2, in <module>
x = int(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s269053338 | p02396 | u015712946 | 1559524237 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | while True:
x = int(input().split())
if x == 0:
break
print("Case ", c, ": ", x, sep="")
| Traceback (most recent call last):
File "/tmp/tmp3tsrkzkp/tmpyvpwvsd4.py", line 2, in <module>
x = int(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s835072007 | p02396 | u015712946 | 1559524330 | Python | Python3 | py | Runtime Error | 0 | 0 | 142 | c = 1
while True:
x = int(input().split())
if x == 0:
break
print("Case ", c, ": ", x, sep="")
c += 1 # c = c + 1 の略記法
| Traceback (most recent call last):
File "/tmp/tmpfthjyfy4/tmpqxq4zkga.py", line 3, in <module>
x = int(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s169229436 | p02396 | u786891610 | 1559535709 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | i = 1
while True:
x = int(input())
if x == 0 :
break
print("Case","", i,":","",x)
i +=
| File "/tmp/tmplor_qqub/tmpn6u0awxy.py", line 7
i +=
^
SyntaxError: invalid syntax
| |
s776851438 | p02396 | u428848588 | 1559538684 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | while True:
x,y =map(int, input().split())
if x==0 and y==0:
break
if x>y:
print(y,x)
else:
print(x,y)
| Traceback (most recent call last):
File "/tmp/tmpve9ulm91/tmpuarmzngr.py", line 2, in <module>
x,y =map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.