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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s387377274 | p02396 | u456885296 | 1453257995 | Python | Python | py | Runtime Error | 0 | 0 | 90 | i=0
while 1:
x = raw_input()
if x == 0:
break
i+=1
print "Case %d: %d" % (i,x) | File "/tmp/tmp3p1dis9y/tmp5cmlqbxy.py", line 2
while 1:
IndentationError: unexpected indent
| |
s856386556 | p02396 | u613805578 | 1453257998 | Python | Python | py | Runtime Error | 0 | 0 | 135 | sum = 0
while true:
x = raw.input()
sum = sum + 1
if x == 0:
break
for i in range(0,sum):
print 'Case %s: %s' %(i, x) | File "/tmp/tmpaxox_6g3/tmp9w9xfw36.py", line 8
print 'Case %s: %s' %(i, x)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s080561422 | p02396 | u613805578 | 1453258006 | Python | Python | py | Runtime Error | 0 | 0 | 137 | sum = 0
while true:
x = raw.input()
sum = sum + 1
if x == "0":
break
for i in range(0,sum):
print 'Case %s: %s' %(i, x) | File "/tmp/tmpie6p92w3/tmpqg2lxgca.py", line 8
print 'Case %s: %s' %(i, x)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s239815033 | p02396 | u613805578 | 1453258019 | Python | Python | py | Runtime Error | 0 | 0 | 134 | sum = 0
while 1:
x = raw.input()
sum = sum + 1
if x == "0":
break
for i in range(0,sum):
print 'Case %s: %s' %(i, x) | File "/tmp/tmpnl3fz1kg/tmprtm3tapc.py", line 8
print 'Case %s: %s' %(i, x)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s083366330 | p02396 | u613805578 | 1453258028 | Python | Python | py | Runtime Error | 0 | 0 | 136 | sum = 0
while 1:
x = raw.input()
sum = sum + 1
if x == " 0 ":
break
for i in range(0,sum):
print 'Case %s: %s' %(i, x) | File "/tmp/tmp4exr5gxj/tmp994_a6ob.py", line 8
print 'Case %s: %s' %(i, x)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s601998382 | p02396 | u834416077 | 1453258030 | Python | Python | py | Runtime Error | 0 | 0 | 96 | i = 1
while 1:
n = input()
if n == "0":
break
print "Case %s: %s" % (i,n):
i = i + 1 | File "/tmp/tmpmbi3ngdo/tmpzlozmhg4.py", line 6
print "Case %s: %s" % (i,n):
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s126885145 | p02396 | u613805578 | 1453258042 | Python | Python | py | Runtime Error | 0 | 0 | 136 | sum = 0
while 1:
x = raw_input()
sum = sum + 1
if x == " 0 ":
break
for i in range(0,sum):
print 'Case %s: %s' %(i, x) | File "/tmp/tmpthwwiwtx/tmpna899pjd.py", line 8
print 'Case %s: %s' %(i, x)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s132372598 | p02396 | u834416077 | 1453258096 | Python | Python | py | Runtime Error | 0 | 0 | 103 | i = 1
while 1:
n = int(raw_input())
if n == 0:
break
print "Case %d: %d" % (i,n):
i = i + 1 | File "/tmp/tmp3wyykxpt/tmpnbzu_rb2.py", line 6
print "Case %d: %d" % (i,n):
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s974677155 | p02396 | u834416077 | 1453258165 | Python | Python | py | Runtime Error | 0 | 0 | 105 | i = 1
while (1):
n = int(raw_input())
if n == 0:
break
print "Case %d: %d" % (i,n):
i = i + 1 | File "/tmp/tmpb4tffrxp/tmpc09_e2fm.py", line 6
print "Case %d: %d" % (i,n):
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s508086827 | p02396 | u613805578 | 1453258181 | Python | Python | py | Runtime Error | 0 | 0 | 111 | sum = 0
while 1:
x = raw_input()
sum = sum + 1
if x == "0":
break
print 'Case %s: %s' %(i, x) | File "/tmp/tmpxttm48uc/tmp8hvfpwfw.py", line 7
print 'Case %s: %s' %(i, x)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s146956403 | p02396 | u456885296 | 1453258182 | Python | Python | py | Runtime Error | 0 | 0 | 98 |
i=0
while 1:
x = int(raw_input())
if x == 0:
break
i+=1
print "Case %d: %d" % (i,x)
| File "/tmp/tmpan6266yr/tmp9rl_b9fn.py", line 3
while 1:
IndentationError: unexpected indent
| |
s990777508 | p02396 | u613805578 | 1453258217 | Python | Python | py | Runtime Error | 0 | 0 | 111 | sum = 0
while 1:
x = raw_input()
sum = sum + 1
if x == '0':
break
print 'Case %s: %s' %(i, x) | File "/tmp/tmp5k5xc7x6/tmp1nkb3jqu.py", line 7
print 'Case %s: %s' %(i, x)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s428409661 | p02396 | u834416077 | 1453258229 | Python | Python | py | Runtime Error | 0 | 0 | 103 | i = 1
while (1):
n = int(raw_input())
if n == 0:
break
print "Case %d: %d"%(i,n):
i = i + 1 | File "/tmp/tmpunkusq56/tmpbw2hrz18.py", line 6
print "Case %d: %d"%(i,n):
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s813406612 | p02396 | u047737909 | 1453258316 | Python | Python | py | Runtime Error | 0 | 0 | 103 | i=0
while c!=0:
c = int(input())
if c == 0 : break
c=c+1
print "Case %d: %d" % (c, a) | File "/tmp/tmpu64kg4u6/tmp2cfeqb0y.py", line 7
print "Case %d: %d" % (c, a)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s598267473 | p02396 | u834416077 | 1453258372 | Python | Python | py | Runtime Error | 0 | 0 | 104 | i = 1
while (1):
n = int(raw_input())
if n == 0:
break
print "Case %d: %d" %(i,n):
i = i + 1 | File "/tmp/tmp4c5pi36g/tmpfsb6v4xh.py", line 6
print "Case %d: %d" %(i,n):
^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s527950291 | p02396 | u047737909 | 1453258411 | Python | Python | py | Runtime Error | 0 | 0 | 84 | i=0
while c != 0:
c = int(input())
i = i+1
print "Case %d: %d" % (i,a) | File "/tmp/tmpd5ntyyt5/tmp_07s91bf.py", line 6
print "Case %d: %d" % (i,a)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s046015590 | p02396 | u456885296 | 1453258456 | Python | Python | py | Runtime Error | 0 | 0 | 99 | i=0
while 1:
x = int( raw_input() )
if x == 0:
break
i+=1
print "Case %d: %d" % (i,x)
| File "/tmp/tmp49_fzbw4/tmp3uzta6ld.py", line 2
while 1:
IndentationError: unexpected indent
| |
s179792739 | p02396 | u834416077 | 1453258464 | Python | Python | py | Runtime Error | 0 | 0 | 104 | i = 1
while (1):
x = int(raw_input())
if x == 0:
break
print "Case %d: %d" %(i,x):
i = i + 1 | File "/tmp/tmpq7_1tepr/tmpe3b_hg9r.py", line 6
print "Case %d: %d" %(i,x):
^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s889341732 | p02396 | u047737909 | 1453258506 | Python | Python | py | Runtime Error | 0 | 0 | 106 | i=0
while True:
c = int(input())
ifc==0:
break
i = i+1
print "Case %d: %d" % (i,c) | File "/tmp/tmpttbor7fn/tmpacd92q1z.py", line 5
ifc==0:
^
SyntaxError: invalid syntax
| |
s070516650 | p02396 | u456885296 | 1453258970 | Python | Python | py | Runtime Error | 0 | 0 | 98 |
i=0
while???True:
x = raw_input()
if x == 0:
break
i+=1
print "Case %d: %d" % (i,x)
| File "/tmp/tmp0a54vc_4/tmpm057hspu.py", line 3
while???True:
IndentationError: unexpected indent
| |
s476829961 | p02396 | u724923896 | 1453298629 | Python | Python | py | Runtime Error | 0 | 0 | 39 | x = input()
print x
if x == 0:
return | File "/tmp/tmpyqdgvfri/tmpfec6a1ua.py", line 2
print x
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s820776991 | p02396 | u724923896 | 1453298900 | Python | Python | py | Runtime Error | 0 | 0 | 83 |
for i in range()
x = input()
if x == 0:
return
print Case i: x
| File "/tmp/tmpjz602a71/tmpzgx801ln.py", line 3
for i in range()
^
SyntaxError: expected ':'
| |
s356668414 | p02396 | u724923896 | 1453299088 | Python | Python | py | Runtime Error | 0 | 0 | 91 | j = input()
for i in range(j):
x = input
if x == 0:
return
print Case i: x | File "/tmp/tmplco_vkgf/tmpm9lomqfu.py", line 7
print Case i: x
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s231158794 | p02396 | u724923896 | 1453299205 | Python | Python | py | Runtime Error | 0 | 0 | 93 | j = input()
for i in range(j):
x = input()
if x == 0:
return
print Case i: x | File "/tmp/tmpfkrc9hvr/tmp605gghhl.py", line 7
print Case i: x
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s677941223 | p02396 | u724923896 | 1453299491 | Python | Python | py | Runtime Error | 0 | 0 | 111 | k = 0
i = 1
while k == 1:
x = input()
if x == 0:
k = 1
else:
print Case i: x
i =+ 1 | File "/tmp/tmpmozx3_xm/tmprlppvkc_.py", line 9
print Case i: x
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s077837592 | p02396 | u724923896 | 1453299602 | Python | Python | py | Runtime Error | 0 | 0 | 112 | k = 0
i = 1
while k == 1:
x = input()
if x != 0:
print Case i: x
i =+ 1
else:
k = 1 | File "/tmp/tmp_94gfyst/tmpuzvg9j94.py", line 7
print Case i: x
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s919047212 | p02396 | u724923896 | 1453302057 | Python | Python | py | Runtime Error | 0 | 0 | 124 | k = 0
i = 0
while k = 1:
i += 1
x = input()
if x == 0:
k = 1
else:
print "Case %d: %d" %(i, x) | File "/tmp/tmpbgfab0ry/tmp7lhb6l4q.py", line 4
while k = 1:
^^^^^
SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
| |
s181973595 | p02396 | u724923896 | 1453302284 | Python | Python | py | Runtime Error | 0 | 0 | 114 | i = 0
while 1:
i += 1
x = input()
if x == 0:
k = 1
else:
print "Case %d: %d" %(i, x) | File "/tmp/tmp8js9718i/tmpfq03oku1.py", line 9
print "Case %d: %d" %(i, x)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s860517244 | p02396 | u970436839 | 1453302333 | Python | Python | py | Runtime Error | 0 | 0 | 138 | x = []
while true:
a = input
if a ==0:
break
else:
x.append(a)
for i in range(len(x)):
print "case %d: %d" %(i+1, x[i]) | File "/tmp/tmpw_v6aypp/tmpudg899mj.py", line 11
print "case %d: %d" %(i+1, x[i])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s725018306 | p02396 | u253463900 | 1453347768 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | i=1
while((x = input()) != 0):
print("Case {0}: {1}".format(i, x))
i += 1 | File "/tmp/tmp2miqbqch/tmpt4so6fbd.py", line 2
while((x = input()) != 0):
^^^^^^^^^^^
SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
| |
s146332736 | p02396 | u253463900 | 1453347847 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | i=1
x = input()
while(x != 0):
print("Case {0}: {1}".format(i, x))
i += 1
x = input() | Traceback (most recent call last):
File "/tmp/tmpqfox_n9s/tmphj94tqp2.py", line 2, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s770281166 | p02396 | u619765879 | 1453435563 | Python | Python | py | Runtime Error | 0 | 0 | 103 | i = 1
while 1:
x = input()
if x = 0:
break
else:
print 'case ' + i + ': ' + x
i += 1 | File "/tmp/tmpmsxa2qh0/tmproo85r39.py", line 5
if x = 0:
^^^^^
SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
| |
s894583959 | p02396 | u619765879 | 1453435578 | Python | Python | py | Runtime Error | 0 | 0 | 106 | i = 1
while True:
x = input()
if x = 0:
break
else:
print 'case ' + i + ': ' + x
i += 1 | File "/tmp/tmpky2kg2w9/tmpb1sdh6jo.py", line 5
if x = 0:
^^^^^
SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
| |
s515894465 | p02396 | u619765879 | 1453435625 | Python | Python | py | Runtime Error | 0 | 0 | 104 | i = 1
while 1:
x = input()
if x == 0:
break
else:
print 'case ' + i + ': ' + x
i += 1 | File "/tmp/tmp8ommqwkt/tmp5qyzl5ts.py", line 8
print 'case ' + i + ': ' + x
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s086729208 | p02396 | u334643297 | 1453650217 | Python | Python | py | Runtime Error | 0 | 0 | 113 | import sys
c = 0
for line in sys.stdin:
if int(line) == 0:
break
c+=1
print 'Case %s: %s' %(c,line), | File "/tmp/tmp4ym3_ely/tmpwu8jubrf.py", line 7
c+=1
^
IndentationError: unindent does not match any outer indentation level
| |
s340331087 | p02396 | u920118302 | 1453772637 | Python | Python | py | Runtime Error | 0 | 0 | 158 | n = []
i = 0
while True:
n.append(input())
if n[i] == 0:
break
i += 1
for j in range(i-1):
print(???case ??? + str(i+1) + ??? : ??? + str(n[i])) | File "/tmp/tmpghgmwhml/tmpndo4h45b.py", line 11
print(???case ??? + str(i+1) + ??? : ??? + str(n[i]))
^
SyntaxError: invalid syntax
| |
s121978288 | p02396 | u119456964 | 1453774028 | Python | Python | py | Runtime Error | 0 | 0 | 97 | while 1:
x = int(raw_innput())
if x ~= 0:
print 'Case i: {0}'.format(x)
else:
break | File "/tmp/tmpcecd5a6e/tmphcrv_28p.py", line 3
if x ~= 0:
^
SyntaxError: invalid syntax
| |
s934378148 | p02396 | u119456964 | 1453774135 | Python | Python | py | Runtime Error | 0 | 0 | 96 | while 1:
x = int(raw_input())
if x ~= 0:
print 'Case i: {0}'.format(x)
else:
break | File "/tmp/tmpduutq108/tmpik98ktik.py", line 3
if x ~= 0:
^
SyntaxError: invalid syntax
| |
s562252066 | p02396 | u630265299 | 1453779273 | Python | Python | py | Runtime Error | 0 | 0 | 111 | j = 1024
for 1 in range(j):
x = raw_input()
if x == '0':
break
print 'Case %d: %s' % (i, x) | File "/tmp/tmpp_pcnqgz/tmpruc_ceau.py", line 2
for 1 in range(j):
^
SyntaxError: cannot assign to literal
| |
s537145379 | p02396 | u630265299 | 1453779396 | Python | Python | py | Runtime Error | 0 | 0 | 112 | N = 10000
for 1 in range(j):
x = raw_input()
if x == '0':
break
print 'Case %d: %s' % (i, x) | File "/tmp/tmpy0xj02d8/tmpmrt_adgj.py", line 2
for 1 in range(j):
^
SyntaxError: cannot assign to literal
| |
s743146222 | p02396 | u630265299 | 1453779522 | Python | Python | py | Runtime Error | 0 | 0 | 110 | i = 1
while 1:
x = raw_input()
if x == '0':
break
print 'Case %d: %s' % (i, x)
i + = 1 | File "/tmp/tmpqq2th38h/tmp409c643a.py", line 6
print 'Case %d: %s' % (i, x)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s446159811 | p02396 | u177295149 | 1453783167 | Python | Python | py | Runtime Error | 0 | 0 | 104 | i = 0
while 1:
x = raw_input()
i = i +1
if x == 0:
break
print ("Case %d: %d") % (i,x) | Traceback (most recent call last):
File "/tmp/tmplkx94o8s/tmppimczqr0.py", line 3, in <module>
x = raw_input()
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s902965704 | p02396 | u177295149 | 1453783351 | Python | Python | py | Runtime Error | 0 | 0 | 104 | i = 0
while 1:
x = raw_input()
i = i +1
if x == 0:
break
print ("Case %d: %d") % (i,x) | Traceback (most recent call last):
File "/tmp/tmpjy5q55x0/tmp76a40w2y.py", line 3, in <module>
x = raw_input()
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s497759915 | p02396 | u177295149 | 1453783380 | Python | Python | py | Runtime Error | 0 | 0 | 107 | i = 0
while 1:
x = raw_input()
i = i +1
print ("Case %d: %d") % (i,x)
if x == 0:
break | Traceback (most recent call last):
File "/tmp/tmpm__q9zm5/tmp05nyjv8z.py", line 3, in <module>
x = raw_input()
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s718061178 | p02396 | u177295149 | 1453783610 | Python | Python | py | Runtime Error | 0 | 0 | 115 | int i = 0
while 1:
int x = raw_input()
i = i +1
if x == 0:
break
print ("Case %d: %d") % (i,x)
| File "/tmp/tmpjiviq_ip/tmpg_s8atl6.py", line 1
int i = 0
^
SyntaxError: invalid syntax
| |
s701437525 | p02396 | u177295149 | 1453783663 | Python | Python | py | Runtime Error | 0 | 0 | 118 | i = 0
while 1:
int x = raw_input()
i = i +1
if x == '0':
break
print ("Case %s: %s") % ('i','x')
| File "/tmp/tmp94s7c1hy/tmpfklkfifw.py", line 1
i = 0
IndentationError: unexpected indent
| |
s583872362 | p02396 | u177295149 | 1453783684 | Python | Python | py | Runtime Error | 0 | 0 | 114 | i = 0
while 1:
int x = raw_input()
i = i +1
if x == '0':
break
print ("Case %s: %s") % (i,x)
| File "/tmp/tmp48an00_m/tmpvwz61r6h.py", line 1
i = 0
IndentationError: unexpected indent
| |
s991615341 | p02396 | u177295149 | 1453783769 | Python | Python | py | Runtime Error | 0 | 0 | 110 | i = 0
while 1:
int x = raw_input()
i = i +1
if x == 0:
break
print "Case %d: %d" % (i,x)
| File "/tmp/tmp4e14swtv/tmpsznrqqzg.py", line 1
i = 0
IndentationError: unexpected indent
| |
s118776571 | p02396 | u177295149 | 1453783817 | Python | Python | py | Runtime Error | 0 | 0 | 112 | i = 0
while 1:
int x = raw_input()
i = i +1
if x == '0':
break
print "Case %s: %s" % (i,x)
| File "/tmp/tmp7nos6uvr/tmptbnd7_uu.py", line 1
i = 0
IndentationError: unexpected indent
| |
s754796016 | p02396 | u177295149 | 1453783843 | Python | Python | py | Runtime Error | 0 | 0 | 108 | i = 0
while 1:
x = raw_input()
i = i +1
if x == '0':
break
print "Case %s: %s" % (i,x)
| File "/tmp/tmptuqz24k7/tmpfg3wb2e9.py", line 1
i = 0
IndentationError: unexpected indent
| |
s420186000 | p02396 | u177295149 | 1453783871 | Python | Python | py | Runtime Error | 0 | 0 | 106 | i = 0
while 1:
x = raw_input()
i = i +1
if x == '0':
break
print "Case %s: %s" % (i,x) | File "/tmp/tmpdftzi3vl/tmpziitfxkf.py", line 1
i = 0
IndentationError: unexpected indent
| |
s061687930 | p02396 | u177295149 | 1453783919 | Python | Python | py | Runtime Error | 0 | 0 | 107 | i = 0
while 1:
x = raw_input()
i = i +1
if x == '0':
break
print 'Case %s: %s' % (i, x) | File "/tmp/tmpw2qv5l_6/tmp9aet7az1.py", line 1
i = 0
IndentationError: unexpected indent
| |
s731509695 | p02396 | u563876281 | 1453808278 | Python | Python | py | Runtime Error | 0 | 0 | 93 |
i = 0
while True
x = raw_input()
if x == '0':
break
print 'Case %s: %s' %(sum, x)
i+=1 | File "/tmp/tmp5oaq82el/tmpfyn0fk1b.py", line 3
while True
^
SyntaxError: expected ':'
| |
s541177048 | p02396 | u563876281 | 1453808493 | Python | Python | py | Runtime Error | 0 | 0 | 97 |
i = 0
while 1:
x = raw_input()
i+=1
if x == '0':
break
print ('Case {}: {}'.format(i,v))
| Traceback (most recent call last):
File "/tmp/tmpj41c4svu/tmpy8wqmoai.py", line 4, in <module>
x = raw_input()
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s588155446 | p02396 | u563876281 | 1453808728 | Python | Python | py | Runtime Error | 0 | 0 | 111 | i = 0
while 1:
i+=1
x = raw_input()
if x == '0':
break
print ('Case {}: {}'.format(i,v)) | Traceback (most recent call last):
File "/tmp/tmpn8coj1jx/tmprc5o73e_.py", line 4, in <module>
x = raw_input()
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s581552393 | p02396 | u682357930 | 1453816157 | Python | Python | py | Runtime Error | 0 | 0 | 66 | i = 0
while(n = (int)input()):
i = i + 1;
print 'Case',i+':',n | File "/tmp/tmpqpasymbp/tmp45biqnzp.py", line 2
while(n = (int)input()):
^^^^^^^^
SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
| |
s523351483 | p02396 | u682357930 | 1453816171 | Python | Python | py | Runtime Error | 0 | 0 | 70 | i = 0
while(n = (int)raw_input()):
i = i + 1;
print 'Case',i+':',n | File "/tmp/tmpdz7cay8n/tmpyza9wpzm.py", line 2
while(n = (int)raw_input()):
^^^^^^^^
SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
| |
s824774082 | p02396 | u682357930 | 1453816410 | Python | Python | py | Runtime Error | 0 | 0 | 79 | i = 0
while !n = (int)raw_input():
i += 1
print 'Case {0}: {1}'.format(i,n) | File "/tmp/tmp7hyv5219/tmp6sxx98jg.py", line 2
while !n = (int)raw_input():
^
SyntaxError: invalid syntax
| |
s814718480 | p02396 | u682357930 | 1453816462 | Python | Python | py | Runtime Error | 0 | 0 | 86 | i = 0
n = input()
while !n:
i += 1
print 'Case {0}: {1}'.format(i,n)
n = input() | File "/tmp/tmpjyw5a__5/tmp0_9hx237.py", line 3
while !n:
^
SyntaxError: invalid syntax
| |
s832087112 | p02396 | u682357930 | 1453816487 | Python | Python | py | Runtime Error | 0 | 0 | 104 | i = 0
n = (int)raw_input()
while !n:
i += 1
print 'Case {0}: {1}'.format(i,n)
n = (int)raw_input() | File "/tmp/tmpms29401p/tmpdxenubfd.py", line 2
n = (int)raw_input()
^^^^^^^^^
SyntaxError: invalid syntax
| |
s880534363 | p02396 | u682357930 | 1453816498 | Python | Python | py | Runtime Error | 0 | 0 | 105 | i = 0
n = (int)raw_input()
while !n:
i = i+1
print 'Case {0}: {1}'.format(i,n)
n = (int)raw_input() | File "/tmp/tmpak4k6rv3/tmpb249sv1v.py", line 2
n = (int)raw_input()
^^^^^^^^^
SyntaxError: invalid syntax
| |
s797355861 | p02396 | u682357930 | 1453816526 | Python | Python | py | Runtime Error | 0 | 0 | 107 | i = 0
n = (int)raw_input()
while (!n):
i = i+1
print 'Case {0}: {1}'.format(i,n)
n = (int)raw_input() | File "/tmp/tmp2tedtbw2/tmp3jwfnt2n.py", line 2
n = (int)raw_input()
^^^^^^^^^
SyntaxError: invalid syntax
| |
s170329529 | p02396 | u682357930 | 1453819436 | Python | Python | py | Runtime Error | 0 | 0 | 109 | i = 0
n = (int)raw_input()
while n != 0:
i = i+1
print 'Case {0}: {1}'.format(i,n)
n = (int)raw_input() | File "/tmp/tmptgihy4us/tmpi6cotz1u.py", line 2
n = (int)raw_input()
^^^^^^^^^
SyntaxError: invalid syntax
| |
s677238677 | p02396 | u682357930 | 1453819441 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | i = 0
n = (int)raw_input()
while n != 0:
i = i+1
print 'Case {0}: {1}'.format(i,n)
n = (int)raw_input() | File "/tmp/tmpncfcje68/tmpt3g8kdw_.py", line 2
n = (int)raw_input()
^^^^^^^^^
SyntaxError: invalid syntax
| |
s219774871 | p02396 | u682357930 | 1453819449 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | i = 0
n = (int)raw_input()
while n != 0:
i = i+1
print 'Case {0}: {1}'.format(i,n)
n = (int)raw_input() | File "/tmp/tmpgmjxo4kv/tmpx13m5gin.py", line 2
n = (int)raw_input()
^^^^^^^^^
SyntaxError: invalid syntax
| |
s442371338 | p02396 | u974554153 | 1454419844 | Python | Python | py | Runtime Error | 0 | 0 | 106 | a=1
while 1:
x=int(raw_input())
if x==0:
break
print "Case %d: %d" % (a,x)
cnt+=1; | File "/tmp/tmpo45rd6y1/tmpx98dbep3.py", line 6
print "Case %d: %d" % (a,x)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s583123154 | p02396 | u148101999 | 1456466732 | Python | Python | py | Runtime Error | 0 | 0 | 112 | import sys
N = input()
num =[input() for i in range(N)]
for i in range(len(num)):
print "Case 1: " + num[i] | File "/tmp/tmp9dd2dwec/tmpym2mg57b.py", line 6
print "Case 1: " + num[i]
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s093731960 | p02396 | u148101999 | 1456467046 | Python | Python | py | Runtime Error | 0 | 0 | 113 | i = 0
while True:
i += 1
num = raw_input()
if x == '0':
break
print "Case %d: %s" % (i,x) | File "/tmp/tmpiwzftj53/tmpk_a6s7l2.py", line 7
print "Case %d: %s" % (i,x)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s479285591 | p02396 | u148101999 | 1456467327 | Python | Python | py | Runtime Error | 0 | 0 | 120 | i = 0
while True:
i += 1
num = raw_input()
if len(num) == 0:
break
print "Case %d: %s" % (i,num) | File "/tmp/tmp9ld17rqm/tmp81gze3ks.py", line 7
print "Case %d: %s" % (i,num)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s296438330 | p02396 | u075836834 | 1457293207 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | import sys
cnt = 1
while 1:
x=sys.stdin.readline().strip()
if x == '0':
break;
print("Case %d: %s"%(cnt,x))
cnt++ | File "/tmp/tmpeb75o6lh/tmpmrnef9kb.py", line 8
cnt++
^
SyntaxError: invalid syntax
| |
s499104210 | p02396 | u994049982 | 1458662893 | Python | Python | py | Runtime Error | 0 | 0 | 92 | i=0
while True:
i+=1
a=input()
if a==0:
break
else:
print("Case "+str(i)": "+str(a)) | File "/tmp/tmpyfitc707/tmplkwfxyi7.py", line 8
print("Case "+str(i)": "+str(a))
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s755926708 | p02396 | u463783070 | 1458730933 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | while True:
x = int(input().strip())
if x == 0:
break
print "Case %d : %d" % (i,x) | File "/tmp/tmpi6p0_l4i/tmpclhu1v3q.py", line 5
print "Case %d : %d" % (i,x)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s244592187 | p02396 | u463783070 | 1458731313 | Python | Python3 | py | Runtime Error | 0 | 0 | 119 | i = 1
while True:
x = int(input().strip())
if x == 0:
break
print "Case %d : %d" % (i,x)
i += 1 | File "/tmp/tmpbiqh8rnp/tmpna6pg6ek.py", line 6
print "Case %d : %d" % (i,x)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s180914128 | p02396 | u463783070 | 1458734599 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | i = 1
while True:
x = int(input().strip())
if x == '0':
break
print 'Case %d : %d' % (i,x)
i += 1 | File "/tmp/tmpb7iopnqy/tmpuvo21y12.py", line 6
print 'Case %d : %d' % (i,x)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s965900118 | p02396 | u463783070 | 1458734656 | Python | Python3 | py | Runtime Error | 0 | 0 | 139 | i = 1
while True:
x = int(input().strip())
if x == '0':
break
else:
print 'Case %d : %d' % (i,x)
i += 1 | File "/tmp/tmpeldc6vj2/tmpujqhd32y.py", line 7
print 'Case %d : %d' % (i,x)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s095221088 | p02396 | u463783070 | 1458744149 | Python | Python3 | py | Runtime Error | 0 | 0 | 141 | i = 1
while True:
x = int(input().strip())
if x == 0:
break
else:
print "Case {} : {}".format(i,x)
i += 1 | File "/tmp/tmp9_cxy5kn/tmp10ahdv84.py", line 7
print "Case {} : {}".format(i,x)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s101326825 | p02396 | u463783070 | 1458744281 | Python | Python3 | py | Runtime Error | 0 | 0 | 143 | i = 1
while True:
x = int(input().strip())
if x == 0:
break
else:
print "Case {0} : {1}".format(i,x)
i += 1 | File "/tmp/tmpyuwm8fr1/tmp7emii44i.py", line 7
print "Case {0} : {1}".format(i,x)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s255168465 | p02396 | u463783070 | 1458745421 | Python | Python3 | py | Runtime Error | 0 | 0 | 148 | i = 1
while True:
x = int(input().strip())
if x == 0:
break
else:
print ("Case" '#{0}: #{1}').format(i,x)
i += 1 | Traceback (most recent call last):
File "/tmp/tmp90mumqjv/tmp4pb4lopu.py", line 3, in <module>
x = int(input().strip())
^^^^^^^
EOFError: EOF when reading a line
| |
s627221444 | p02396 | u463783070 | 1458745656 | Python | Python3 | py | Runtime Error | 0 | 0 | 146 | i = 1
while True:
x = int(input().strip())
if x == 0:
break
else:
print ("Case" #{0}: #{1}).format(i,x)
i += 1 | File "/tmp/tmp7vjbeqtl/tmpallithqd.py", line 7
print ("Case" #{0}: #{1}).format(i,x)
^
SyntaxError: '(' was never closed
| |
s870635738 | p02396 | u463783070 | 1458745760 | Python | Python3 | py | Runtime Error | 0 | 0 | 142 | i = 1
while True:
x = int(input().strip())
if x == 0:
break
else:
print ("Case" {}: {}).format(i,x)
i += 1 | File "/tmp/tmplo3kehee/tmpu_dk51z4.py", line 7
print ("Case" {}: {}).format(i,x)
^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s498353490 | p02396 | u463783070 | 1458745833 | Python | Python3 | py | Runtime Error | 0 | 0 | 142 | i = 1
while True:
x = int(input().strip())
if x == 0:
break
else:
print ('Case' {}: {}).format(i,x)
i += 1 | File "/tmp/tmpbukssf3l/tmp1c_b5gty.py", line 7
print ('Case' {}: {}).format(i,x)
^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s907534278 | p02396 | u463783070 | 1458746007 | Python | Python3 | py | Runtime Error | 0 | 0 | 142 | i = 1
while True:
x = int(input().strip())
if x == 0:
break
else:
print ("Case {}: {}").format(i,x)
i += 1 | Traceback (most recent call last):
File "/tmp/tmpr3nhrsrz/tmpw7qnlgfn.py", line 3, in <module>
x = int(input().strip())
^^^^^^^
EOFError: EOF when reading a line
| |
s396404869 | p02396 | u463783070 | 1458746123 | Python | Python3 | py | Runtime Error | 0 | 0 | 146 | i = 1
while True:
x = int(input().strip())
if x == 0:
break
else:
print ("""Case {}: {}""").format(i,x)
i += 1 | Traceback (most recent call last):
File "/tmp/tmprb6l1ldo/tmp8hws8fq_.py", line 3, in <module>
x = int(input().strip())
^^^^^^^
EOFError: EOF when reading a line
| |
s229208411 | p02396 | u463783070 | 1458746335 | Python | Python3 | py | Runtime Error | 0 | 0 | 146 | i = 1
while True:
x = int(input().strip())
if x == 0:
break
else:
print ("""Case {}: {}""").format(i x)
i += 1 | File "/tmp/tmprys1ftbq/tmp8ffns2jl.py", line 7
print ("""Case {}: {}""").format(i x)
^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s617011438 | p02396 | u402330988 | 1459735800 | Python | Python3 | py | Runtime Error | 0 | 0 | 118 | # encoding:utf-8
count = 1
input = input().split(" ")
for i in input:
print("Case %d:%d"%(count,i))
count += 1 | Traceback (most recent call last):
File "/tmp/tmp91wwhdsz/tmpw23sc9hg.py", line 3, in <module>
input = input().split(" ")
^^^^^^^
EOFError: EOF when reading a line
| |
s262071788 | p02396 | u226888928 | 1460123214 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | i=0
while((a=int(input())!=0):
i+=1
print("Case {0}: {1}".format(i,a)) | File "/tmp/tmpj8m00no8/tmptputdpth.py", line 2
while((a=int(input())!=0):
^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
| |
s102684914 | p02396 | u226888928 | 1460123507 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | i=0
while 1:
a=int(input())
if(a==0)break
i+=1
print("Case {0}: {1}".format(i,a)) | File "/tmp/tmp0ufet1b7/tmpt2fhjg1a.py", line 4
if(a==0)break
^^^^^
SyntaxError: invalid syntax
| |
s817360449 | p02396 | u894381890 | 1460350848 | Python | Python | py | Runtime Error | 0 | 0 | 111 | import sys
i = 0
while x != 0:
x = sys.stdin.readline()
i += 1
print case,
print "%d: %d", %(i,x)
| File "/tmp/tmpvnskdp6k/tmpc2t6vgcr.py", line 9
print case,
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s356998620 | p02396 | u894381890 | 1460350870 | Python | Python | py | Runtime Error | 0 | 0 | 111 | import sys
i = 0
while x != 0:
x = sys.stdin.readline()
i += 1
print Case,
print "%d: %d", %(i,x)
| File "/tmp/tmp6djk0jru/tmpghp_25_c.py", line 9
print Case,
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s106488584 | p02396 | u894381890 | 1460350887 | Python | Python | py | Runtime Error | 0 | 0 | 102 | import sys
i = 0
while x != 0:
x = sys.stdin.readline()
i += 1
print "Case %d: %d", %(i,x)
| File "/tmp/tmpyp9nc3f4/tmp2em2s2zv.py", line 9
print "Case %d: %d", %(i,x)
^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s946459160 | p02396 | u894381890 | 1460350907 | Python | Python | py | Runtime Error | 0 | 0 | 102 | import sys
i = 0
while x == 0:
x = sys.stdin.readline()
i += 1
print "Case %d: %d", %(i,x)
| File "/tmp/tmpuka0jnob/tmpuwtladtq.py", line 9
print "Case %d: %d", %(i,x)
^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s155007970 | p02396 | u894381890 | 1460350921 | Python | Python | py | Runtime Error | 0 | 0 | 108 | import sys
i = 0
x = 1
while x == 0:
x = sys.stdin.readline()
i += 1
print "Case %d: %d", %(i,x)
| File "/tmp/tmp_kxqq0jp/tmpqtq_1nop.py", line 10
print "Case %d: %d", %(i,x)
^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s671651021 | p02396 | u894381890 | 1460350964 | Python | Python | py | Runtime Error | 0 | 0 | 108 | import sys
i = 0
x = 1
while x != 0:
x = sys.stdin.readline()
i += 1
print "Case %d: %d", %(i,x)
| File "/tmp/tmphmbo04j8/tmpn6qa7g_e.py", line 10
print "Case %d: %d", %(i,x)
^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s270156583 | p02396 | u894381890 | 1460351000 | Python | Python | py | Runtime Error | 0 | 0 | 108 | import sys
i = 0
x = 1
while x != 0:
x = sys.stdin.readline()
i += 1
print 'Case %d: %s', %(i,x)
| File "/tmp/tmpg6z8w9sj/tmpc55hmuuk.py", line 10
print 'Case %d: %s', %(i,x)
^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s865066452 | p02396 | u894381890 | 1460351024 | Python | Python | py | Runtime Error | 0 | 0 | 107 | import sys
i = 0
x = 1
while x != 0:
x = sys.stdin.readline()
i += 1
print 'Case %d: %s', %(i,x)
| File "/tmp/tmpgf5m9ll3/tmp0z9vprs3.py", line 9
print 'Case %d: %s', %(i,x)
^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s840057200 | p02396 | u412890344 | 1462852541 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | num = int(input())
for i:
print("Case " + i + ": " + num[i])
if num == 0
break | File "/tmp/tmpyqqo7dq_/tmp7b_x4a1f.py", line 3
for i:
^
SyntaxError: invalid syntax
| |
s915287408 | p02396 | u412890344 | 1462852659 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | num = int(input())
while num != 0
print("Case " + i + ": " + num[i])
| File "/tmp/tmptk30ba57/tmp8fb090xf.py", line 3
while num != 0
^
SyntaxError: expected ':'
| |
s590819767 | p02396 | u412890344 | 1462852753 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | num = int(input())
i=0
while num != 0:
print("Case " + i + ": " + num[i])
i=i+1 | Traceback (most recent call last):
File "/tmp/tmp7ldole_k/tmpivfy5bij.py", line 1, in <module>
num = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s723255019 | p02396 | u656153606 | 1463552215 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | i = 1
while i > 0:
x = input()
print("Case",i,end="")
print(":",x)
if x == 0:
break | Traceback (most recent call last):
File "/tmp/tmpk0g_ymn8/tmpil1flulj.py", line 3, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s173870546 | p02396 | u216235239 | 1463741472 | Python | Python3 | py | Runtime Error | 0 | 0 | 145 | import sys
num = 0
while 1:
x = sys.stdin.readline().strip()
if x == "0":
break
num = num + 1
print("case " + str(num) + ": " + x")
| File "/tmp/tmpzibkcge0/tmpxj58c5zz.py", line 12
print("case " + str(num) + ": " + x")
^
SyntaxError: unterminated string literal (detected at line 12)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.