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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s328762554 | p02390 | u629874472 | 1559012786 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | S = int(input())
h = S // 3600
m = (S - h*3600)//60
s = S - h*3600 - m*60
print(h+':'+m+':'+s)
| Traceback (most recent call last):
File "/tmp/tmp9ggacjbd/tmpb2ij4isk.py", line 1, in <module>
S = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s540102379 | p02390 | u629874472 | 1559012804 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | S = int(input())
h = S // 3600
m = (S - h*3600)//60
s = S - h*3600 - m*60
print(h,':'m,':',s)
| File "/tmp/tmp90pxb2hr/tmpl71loc3t.py", line 6
print(h,':'m,':',s)
^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s982248439 | p02390 | u694991192 | 1559389180 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | S = int(input())
h = S // 3600
m = S % 3600 // 60
s = S % 60
print({h}":"{m}":"{s})
| File "/tmp/tmpw9fo4y0z/tmpqpqk62os.py", line 5
print({h}":"{m}":"{s})
^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s688808100 | p02390 | u694991192 | 1559389289 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | S = int(input())
h = S // 3600
m = S % 3600 // 60
s = S % 60
print(h:m:s)
| File "/tmp/tmpbunruqpv/tmpjohthwgn.py", line 5
print(h:m:s)
^
SyntaxError: invalid syntax
| |
s077127740 | p02390 | u296492699 | 1404722619 | Python | Python | py | Runtime Error | 0 | 0 | 71 | h=S/3600
m=(S%3600)/60
s=(S%3600)%60
print str(h)+':'+str(m)+':'+str(s) | File "/tmp/tmp0dbxpkl6/tmpxrk7jp9_.py", line 4
print str(h)+':'+str(m)+':'+str(s)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s477466819 | p02390 | u018580670 | 1409569416 | Python | Python | py | Runtime Error | 0 | 0 | 1 | a | Traceback (most recent call last):
File "/tmp/tmpsu92sqiu/tmpwol60cqr.py", line 1, in <module>
a
NameError: name 'a' is not defined
| |
s243115174 | p02390 | u955279063 | 1412128374 | Python | Python | py | Runtime Error | 0 | 0 | 653 | h = S / 3600
m = (S - h*3600) / 60
S = 3598
h = S / ... | File "/tmp/tmp69hgigr2/tmpalef06_9.py", line 7
print "%d:%d:%d" % (h, m, s)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s056433632 | p02390 | u955279063 | 1412128480 | Python | Python | py | Runtime Error | 0 | 0 | 418 | h = S / 3600
m = (S - h*3600) / 60
s = S - (h * 3600 + m * 60) ... | File "/tmp/tmpb65_mf76/tmp8i1w1i8a.py", line 4
print "%d:%d:%d" % (h, m, s)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s031938935 | p02390 | u017764209 | 1416403382 | Python | Python | py | Runtime Error | 0 | 0 | 102 | time = raw_input()
h = time /3600
m = time % 3600 / 60
s = time % 3600 % 60
":".join(map(str,[h,m,s])) | Traceback (most recent call last):
File "/tmp/tmp1qdhcmz5/tmpiz2b6a7e.py", line 1, in <module>
time = raw_input()
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s956274915 | p02390 | u181540499 | 1417101528 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | hour = input() // 3600
minute = input() - 3600 * hour
second = hour - 60 * minute
print( hour ':' minute ':' second ':' ) | File "/tmp/tmp97mqu9g4/tmpqgjijv1w.py", line 5
print( hour ':' minute ':' second ':' )
^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s412321463 | p02390 | u181540499 | 1417101683 | Python | Python3 | py | Runtime Error | 0 | 0 | 136 | input = int(input())
hour = input // 3600
minute = input - 3600 * hour
second = hour - 60 * minute
print( hour ':' minute ':' second ) | File "/tmp/tmpblfxm_4g/tmplm7pskf0.py", line 7
print( hour ':' minute ':' second )
^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s102272761 | p02390 | u181540499 | 1417101962 | Python | Python3 | py | Runtime Error | 0 | 0 | 139 | input = int(input())
hour = input // 3600
minute = input - 3600 * hour
second = hour - 60 * minute
print(str( hour : minute : second )) | File "/tmp/tmpcvllzd7f/tmpxw5inu1h.py", line 7
print(str( hour : minute : second ))
^
SyntaxError: invalid syntax
| |
s339447780 | p02390 | u871901071 | 1417287245 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | import os
if os.command("ocamlopt") != 0:
print(1/0) | Traceback (most recent call last):
File "/tmp/tmpf9j6mgr1/tmpla1iwjt8.py", line 3, in <module>
if os.command("ocamlopt") != 0:
^^^^^^^^^^
AttributeError: module 'os' has no attribute 'command'
| |
s839073739 | p02390 | u871901071 | 1417298053 | Python | Python3 | py | Runtime Error | 0 | 0 | 4166 | import tempfile, os, subprocess, sys, base64, time, zlib
(_, file) = tempfile.mkstemp()
f = open(file, "wb")
f.write(zlib.decompress(base64.b64decode(b"""eNrtWn1wG8UV3ztZtvKBpHwRJbFjkTjUMLVw3JAxSQDJH2FNDXVJDJkSIyv+iA3+qiw1DpjEjRJaVQgMpWBmGMZ0Wiblr3QawNOhE6VKozCUwWmnNEz6hwpJK8fN4BlookDC9e3dW+luxzJ02uEvrUf30/u993b3vd29X... | Traceback (most recent call last):
File "/tmp/tmp1xwagvpg/tmpksb97ws2.py", line 10, in <module>
print(1/0)
~^~
ZeroDivisionError: division by zero
| ::
|
s405239422 | p02390 | u871901071 | 1417298676 | Python | Python3 | py | Runtime Error | 60 | 10756 | 4214 | import tempfile, os, subprocess, sys, base64, time, zlib
(_, file) = tempfile.mkstemp()
f = open(file, "wb")
f.write(zlib.decompress(base64.b64decode(b"""eNrtWm9wG8UV3ztZjmInkhICMYkTK4lCDVMLOzWpaAJIsQ3rjkNTHNO0xChKbMcO/lfpRBxIiMGB4aoK3JmWuJ1Mx+lQxu2nfCg006GDjDLITMlUgSGEgRZBk6mclMEzUKKEhOvb213pbmuZdNrpJ63n7un93vvtvn27e... | 0:0:0
| |
s148267689 | p02390 | u481221703 | 1418861380 | Python | Python | py | Runtime Error | 0 | 0 | 172 | import sys
for line in sys.stdin.readlines():
S = map(int, line.strip().split())
h = S/60
S1 = S%h
m = S1/60
s = S1/m
print "%d:%d:%d", h, m, s | File "/tmp/tmpa1bgerji/tmpfvzgsdp3.py", line 13
print "%d:%d:%d", h, m, s
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s149549017 | p02390 | u481221703 | 1418862151 | Python | Python | py | Runtime Error | 0 | 0 | 315 | import os
import sys
# for line in sys.stdin.readlines():
S = map(int, line.strip().split())
h, m, s = 0, 0, 0
h = S/3600
S1 = S-h*3600
if S1:
m = S1/60
elif S1 == 0:
m = 0
if m:
s = S1-m*60
elif m == 0:
s = S1
print "%d:%d:%d" % (h, m, s) | File "/tmp/tmpjda10pvu/tmppx__qnxz.py", line 5
S = map(int, line.strip().split())
IndentationError: unexpected indent
| |
s227396103 | p02390 | u481221703 | 1418862222 | Python | Python | py | Runtime Error | 0 | 0 | 320 | import os
import sys
for line in sys.stdin.readlines():
S = map(int, line.strip().split())
h, m, s = 0, 0, 0
h = S/3600
S1 = S-h*3600
if S1:
m = S1/60
elif S1 == 0:
m = 0
if m:
s = S1-m*60
elif m == 0:
s = S1
print "%d:%d:%d" % (h, m, s) | File "/tmp/tmp3v8d0ph3/tmpyhh2ztne.py", line 23
print "%d:%d:%d" % (h, m, s)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s994801297 | p02390 | u481221703 | 1418862478 | Python | Python | py | Runtime Error | 0 | 0 | 324 | import os
import sys
for line in sys.stdin.readlines():
S = map(int, line.strip().split())
h, m, s = 0, 0, 0
h = S/3600
S1 = S-h*3600
if S1 == 0:
m = 0
else:
m = S1/60
if m == 0:
s = S1
else:
s = S1 - m*60
print "%d:%d:%d" % (h, m... | File "/tmp/tmpqniieen4/tmp9q3ge205.py", line 23
print "%d:%d:%d" % (h, m, s)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s378065614 | p02390 | u204429063 | 1421982950 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | S = int(input())
h = S / 60
m = h % 60
s = m % 60
print(h+ ':' m + ':' + s) | File "/tmp/tmp0_e2ogaf/tmppts5jc91.py", line 7
print(h+ ':' m + ':' + s)
^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s460157646 | p02390 | u131984977 | 1421982961 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | S = int(input())
h = S // 3600
m = S // 60 % 60
s = S % 60
print(h + ':' + m + ':' + s) | Traceback (most recent call last):
File "/tmp/tmpms39kz8p/tmpsduwtf29.py", line 1, in <module>
S = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s344143683 | p02390 | u204429063 | 1421982984 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | S = int(input())
h = S / 60
m = h % 60
s = m % 60
print(h+ ':' + m + ':' + s) | Traceback (most recent call last):
File "/tmp/tmpx4uu1fmk/tmpy2b8bqo9.py", line 1, in <module>
S = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s855578113 | p02390 | u067975558 | 1421983075 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | S = int(input.())
h = (S =/ 60 * 60)
m = (S =/ 60)
s = S
print(h + ':' + m + ':' + s) | File "/tmp/tmpmn7i2o2z/tmpv89y4ym9.py", line 1
S = int(input.())
^
SyntaxError: invalid syntax
| |
s230024228 | p02390 | u204429063 | 1421983146 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | S = int(input())
h = S / 60
m = S % h
s = S % m
print(h+ ':' + m + ':' + s) | Traceback (most recent call last):
File "/tmp/tmp3xn9vuzt/tmpenmr9ia2.py", line 1, in <module>
S = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s940880588 | p02390 | u067975558 | 1421983283 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | S = int(input.())
h = S // 3600
m = S // 60 % 60
s = S % 60
print(h + ':' + m + ':' + s) | File "/tmp/tmpk4niwt5v/tmpc4vx_fid.py", line 1
S = int(input.())
^
SyntaxError: invalid syntax
| |
s516021517 | p02390 | u067975558 | 1421983402 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | S = int(input.())
h = S // 3600
m = S // 60 % 60
s = S % 60
print('{0}:{1}:{2}'.format(0, 1, 2)) | File "/tmp/tmp7lewvhjk/tmppi8s16u6.py", line 1
S = int(input.())
^
SyntaxError: invalid syntax
| |
s820163317 | p02390 | u204429063 | 1421983430 | Python | Python3 | py | Runtime Error | 0 | 0 | 124 | S = int(input())
h = S // 3600
m = S // 60 % 60
s = S % 60
#print(h+ ':' + m + ':' + s)
print("{0}:{1}:{2}".format(h,m,s); | File "/tmp/tmpiuvke7wi/tmpb4dc9jfy.py", line 8
print("{0}:{1}:{2}".format(h,m,s);
^
SyntaxError: invalid syntax
| |
s052852837 | p02390 | u067975558 | 1421983443 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | S = int(input.())
h = S // 3600
m = S // 60 % 60
s = S % 60
print('{0}:{1}:{2}'.format(h, m, s)) | File "/tmp/tmposwatg4t/tmpzfio1lt5.py", line 1
S = int(input.())
^
SyntaxError: invalid syntax
| |
s737110215 | p02390 | u527848444 | 1422237441 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | S = int(input())
h = S // 3600
m S % 3600 // 60
s = S % 60
print(h,m,s,sep = ":") | File "/tmp/tmpj5qdh7vz/tmp7inasuai.py", line 3
m S % 3600 // 60
^
SyntaxError: invalid syntax
| |
s789135918 | p02390 | u745846646 | 1422237639 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | S = int(input())
h = S // 3600
m = S % 3600 // 60
s = S // 60
print(h,m,s sep=':') | File "/tmp/tmp2yqu28oe/tmp94e8fx1k.py", line 5
print(h,m,s sep=':')
^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s590152274 | p02390 | u745846646 | 1422237975 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | S = int(input())
h = s // 3600
m = s % 3600 // 60
s = S % 60
print(h,m,s, sep=':') | Traceback (most recent call last):
File "/tmp/tmpwk5gdcj4/tmprg256gsi.py", line 1, in <module>
S = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s000308066 | p02390 | u193599711 | 1422580238 | Python | Python3 | py | Runtime Error | 0 | 0 | 186 | time = int(input))
if time != 0:
h = time // 3600
time = time % 3600
m = time // 60
s = time % 60
print(str(h) + ':' + str(m) + ':' + str(s))
else:
print('0:0:0') | File "/tmp/tmpupewlvww/tmp8f2oezqe.py", line 1
time = int(input))
^
SyntaxError: unmatched ')'
| |
s624984639 | p02390 | u442472098 | 1423030473 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | s = int(input())
h,m,s = s / 3600, (s/60)%60, s%60
printf("%d:%d:%d",h,m,s) | Traceback (most recent call last):
File "/tmp/tmpte_h1jce/tmp5i_uzc4j.py", line 1, in <module>
s = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s139928753 | p02390 | u297342993 | 1423193805 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | S = int(input())
print('{0}:{1}:{2}'format(S//3600, S // 60, S % 60)) | File "/tmp/tmpvyfxowcn/tmpvjz8gh92.py", line 2
print('{0}:{1}:{2}'format(S//3600, S // 60, S % 60))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s281038897 | p02390 | u744114948 | 1423741251 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | t=int(input())
print("{:0<2}:{0<2}:{:0<2}".format(t//60**2,t%60**2//60,t%60**2%60)) | Traceback (most recent call last):
File "/tmp/tmpljglzh31/tmpa03xl0i9.py", line 1, in <module>
t=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s317288133 | p02390 | u744114948 | 1423741329 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | t=int(input())
print("{:0>2}:{0>2}:{:0>2}".format(t//60**2,t%60**2//60,t%60**2%60)) | Traceback (most recent call last):
File "/tmp/tmpvfddu1_w/tmpgvbr7zo0.py", line 1, in <module>
t=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s655666956 | p02390 | u230653580 | 1424054198 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | x = int(input())
h = x // 3600
m = x % 3600 / 60
s = % 60
print(h,m,s,sep=':') | File "/tmp/tmpybc5hint/tmpt236m0wg.py", line 5
s = % 60
^
SyntaxError: invalid syntax
| |
s247564008 | p02390 | u230653580 | 1424054252 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | x = int(input())
h = x // 3600
m = x % 3600 // 60
s = % 60
print(h,m,s,sep=':') | File "/tmp/tmp68_bop3k/tmp6mufjehs.py", line 5
s = % 60
^
SyntaxError: invalid syntax
| |
s220799072 | p02390 | u555750476 | 1432109151 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | S=input()
S=int(S)
h=S/3600
m=(S-3600*h)/60
s=S-h*3600/m*60
print(h:m:s) | File "/tmp/tmpz3crj6ix/tmpopvtln62.py", line 6
print(h:m:s)
^
SyntaxError: invalid syntax
| |
s526667931 | p02390 | u555750476 | 1432109174 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | S=input()
S=int(S)
h=S/3600
m=(S-3600*h)/60
s=S-h*3600/m*60
print(h:m:s) | File "/tmp/tmptqrz76ag/tmpsb53oz0g.py", line 6
print(h:m:s)
^
SyntaxError: invalid syntax
| |
s180484610 | p02390 | u555750476 | 1432109186 | Python | Python | py | Runtime Error | 0 | 0 | 72 | S=input()
S=int(S)
h=S/3600
m=(S-3600*h)/60
s=S-h*3600/m*60
print(h:m:s) | File "/tmp/tmp6mmfndwm/tmp3dk2oujo.py", line 6
print(h:m:s)
^
SyntaxError: invalid syntax
| |
s683577368 | p02390 | u555750476 | 1432109363 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | S=input()
S=int(S)
h=S/3600
h=int(h)
m=(S-3600*h))/60
m=int(m)
s=S-h*3600/m*60
print(h:m:s) | File "/tmp/tmp5rlq9js1/tmp53cx95_g.py", line 5
m=(S-3600*h))/60
^
SyntaxError: unmatched ')'
| |
s626518196 | p02390 | u555750476 | 1432109489 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | S=input()
S=int(S)
h=S/3600
h=int(h)
m=(S-3600*h)/60
m=int(m)
s=S-h*3600-m*60
print(h:m:s) | File "/tmp/tmp48z9kb1z/tmpcg_wx_b9.py", line 8
print(h:m:s)
^
SyntaxError: invalid syntax
| |
s270731041 | p02390 | u555750476 | 1432109539 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | S=input()
S=int(S)
h=S/3600
h=int(h)
m=(S-3600*h)/60
m=int(m)
s=S-h*3600-m*60
s=int(s)
print(h:m:s) | File "/tmp/tmppqvywbw5/tmp34k2u29a.py", line 9
print(h:m:s)
^
SyntaxError: invalid syntax
| |
s589596001 | p02390 | u555750476 | 1432109551 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | h=S/3600
h=int(h)
m=(S-3600*h)/60
m=int(m)
s=S-h*3600-m*60
s=int(s)
print(h:m:s) | File "/tmp/tmpj28fp23q/tmpcfxxtm2h.py", line 7
print(h:m:s)
^
SyntaxError: invalid syntax
| |
s901186381 | p02390 | u555750476 | 1432109667 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | S=input()
S=int(S)
h=S/3600
h=int(h)
m=(S-3600*h)/60
m=int(m)
s=S-h*3600-m*60
s=int(s)
print(h:m:s) | File "/tmp/tmprqngm18e/tmprz3274zv.py", line 9
print(h:m:s)
^
SyntaxError: invalid syntax
| |
s658289608 | p02390 | u555750476 | 1432109731 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | S=input()
S=int(S)
h=S/3600
h=int(h)
m=(S-3600*h)/60
m=int(m)
s=S-h*3600-m*60
s=int(s)
print(h:m:s)
| File "/tmp/tmp5ad0ilu7/tmpsdudj54_.py", line 9
print(h:m:s)
^
SyntaxError: invalid syntax
| |
s740068941 | p02390 | u555750476 | 1432109768 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | S=input()
S=int(S)
h=S/3600
h=int(h)
m=(S-3600*h)/60
m=int(m)
s=S-h*3600-m*60
s=int(s)
print(h,:,m:,s)
| File "/tmp/tmpeq0gj3c5/tmpx4897kew.py", line 9
print(h,:,m:,s)
^
SyntaxError: invalid syntax
| |
s764184714 | p02390 | u812648461 | 1433215302 | Python | Python | py | Runtime Error | 0 | 0 | 86 | S = (int)raw_input()
list=[S/3600 ,S%3600/60, S%3600%60]
print ':'.join(map(str,list)) | File "/tmp/tmpjun3tugm/tmpjeh4kznr.py", line 1
S = (int)raw_input()
^^^^^^^^^
SyntaxError: invalid syntax
| |
s091987130 | p02390 | u464218592 | 1434183536 | Python | Python | py | Runtime Error | 0 | 0 | 87 | s = input()
h = s / 360
s -= h * 360
m = s / 60
s -= m * 60
print h + ":" + m + ":" + s | File "/tmp/tmpzp4h50s7/tmpona4p641.py", line 6
print h + ":" + m + ":" + s
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s535823415 | p02390 | u464218592 | 1434183598 | Python | Python | py | Runtime Error | 0 | 0 | 96 | s = int(raw_input())
h = s / 360
s -= h * 360
m = s / 60
s -= m * 60
print h + ":" + m + ":" + s | File "/tmp/tmp24t0cfw2/tmprnzuakna.py", line 6
print h + ":" + m + ":" + s
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s648933841 | p02390 | u464218592 | 1434183723 | Python | Python | py | Runtime Error | 0 | 0 | 100 | s = int(raw_input())
h = s / 360
s = s -h * 360
m = s / 60
s = s -m * 60
print h + ":" + m + ":" + s | File "/tmp/tmpkchgccmo/tmp683lqfxu.py", line 6
print h + ":" + m + ":" + s
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s249353317 | p02390 | u571345655 | 1434451440 | Python | Python | py | Runtime Error | 0 | 0 | 264 | # coding: utf-8
uSec = 1
uMinute = 60 * uSec
uHour = 60 * uMinute
input_secs = int(raw_input().rstrip())
h = input_secs / uHour
m = (input_sces - h * uHour) / uMinute
s = (input_secs - h * uHour - m * uMinute) / uSec
print ':'.join([str(x) for x in [h, m, s]]) | File "/tmp/tmp5eaa_6ht/tmpcxwl2tu3.py", line 13
print ':'.join([str(x) for x in [h, m, s]])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s300017285 | p02390 | u172616925 | 1434862090 | Python | Python | py | Runtime Error | 0 | 0 | 85 | S = input()
h = S // 3600
m = S % 3600 //60
s = S % 3600 % 60
print h, ':', m, ':', t | File "/tmp/tmpj0zd0dpw/tmpviif504u.py", line 5
print h, ':', m, ':', t
^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s086851078 | p02390 | u172616925 | 1434862483 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | S = input()
h = S // 3600
m = S % 3600 //60
s = S % 3600 % 60
print h, ":", m, ":", t | File "/tmp/tmp914dudi0/tmp7cs2_dmy.py", line 5
print h, ":", m, ":", t
^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s882995026 | p02390 | u172616925 | 1434862611 | Python | Python | py | Runtime Error | 0 | 0 | 100 | S = input()
h = S // 3600
m = S % 3600 //60
s = S % 3600 % 60
print str(h), ':', str(m), ':', str(t) | File "/tmp/tmpe1jl5b_r/tmpdbew4kf2.py", line 5
print str(h), ':', str(m), ':', str(t)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s762482596 | p02390 | u172616925 | 1434862694 | Python | Python | py | Runtime Error | 0 | 0 | 100 | S = input()
h = S // 3600
m = S % 3600 //60
s = S % 3600 % 60
print str(h), ":", str(m), ":", str(t) | File "/tmp/tmp1l9a5y6c/tmpechoxu6n.py", line 5
print str(h), ":", str(m), ":", str(t)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s770749513 | p02390 | u172616925 | 1434863432 | Python | Python | py | Runtime Error | 0 | 0 | 89 | S = input()
h = S // 3600
m = S % 3600 //60
s = S % 3600 % 60
print h + ':' + m + ':' + t | File "/tmp/tmpybsrpf40/tmp4uls65yu.py", line 5
print h + ':' + m + ':' + t
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s307226659 | p02390 | u172616925 | 1434863462 | Python | Python | py | Runtime Error | 0 | 0 | 104 | S = input()
h = S // 3600
m = S % 3600 //60
s = S % 3600 % 60
print str(h) + ':' + str(m) + ':' + str(t) | File "/tmp/tmpsiezxnhd/tmp6dfb74de.py", line 5
print str(h) + ':' + str(m) + ':' + str(t)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s965372801 | p02390 | u172616925 | 1434863493 | Python | Python | py | Runtime Error | 0 | 0 | 104 | S = input()
h = S // 3600
m = S % 3600 //60
s = S % 3600 % 60
print str(h) + ":" + str(m) + ":" + str(t) | File "/tmp/tmpx1ya9v3m/tmpiycvriv0.py", line 5
print str(h) + ":" + str(m) + ":" + str(t)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s624503244 | p02390 | u172616925 | 1434863585 | Python | Python | py | Runtime Error | 0 | 0 | 89 | S = input()
h = S // 3600
m = S % 3600 //60
s = S % 3600 % 60
print h + ':' + m + ':' + s | File "/tmp/tmplduoy3gx/tmp2qmyc3ra.py", line 5
print h + ':' + m + ':' + s
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s362944707 | p02390 | u614711522 | 1436147046 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | s = input()
print( s/3600, s%3600/3, s%3600%60, sep=":") | Traceback (most recent call last):
File "/tmp/tmprf1lw2np/tmp91spxucq.py", line 1, in <module>
s = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s528431370 | p02390 | u527848444 | 1436147172 | Python | Python3 | py | Runtime Error | 0 | 0 | 43 | print(str(h) + ':' + str(m) + ':' + str(s)) | Traceback (most recent call last):
File "/tmp/tmpb5t19v_c/tmpv30wdr0e.py", line 1, in <module>
print(str(h) + ':' + str(m) + ':' + str(s))
^
NameError: name 'h' is not defined
| |
s839133876 | p02390 | u527848444 | 1436147987 | Python | Python | py | Runtime Error | 0 | 0 | 66 | S = int(input())
h = S/60
m = S/120
s = S/240
print(h,m,s,sep=':=) | File "/tmp/tmpq_a39ia6/tmput2ehdb_.py", line 5
print(h,m,s,sep=':=)
^
SyntaxError: unterminated string literal (detected at line 5)
| |
s486003452 | p02390 | u118723993 | 1436148089 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | S = int(input())
h =
m =
s =
print(h, m, s, sep=':') | File "/tmp/tmp1pv46hdi/tmpp_u49qyj.py", line 2
h =
^
SyntaxError: invalid syntax
| |
s412289677 | p02390 | u733449206 | 1436148110 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | S = int(input())
h = ??????????±????????¨????
m = ???????±????????¨????
s = ?§?????±????????¨????
print(h,m,s, sep=":") | File "/tmp/tmpprowv922/tmpblwqwrvg.py", line 2
h = ??????????±????????¨????
^
SyntaxError: invalid character '±' (U+00B1)
| |
s864835503 | p02390 | u733449206 | 1436148210 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | S = int(input())
h = ??????????±????????¨????
m = ???????±????????¨????
s = ?§?????±????????¨????
print(h,m,s, sep=':') | File "/tmp/tmp0ash48f4/tmpigj8rkjq.py", line 2
h = ??????????±????????¨????
^
SyntaxError: invalid character '±' (U+00B1)
| |
s150012450 | p02390 | u614711522 | 1436148307 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | S = int( input())
print( S//3600, s%3600//60, s%3600%60, sep=":") | Traceback (most recent call last):
File "/tmp/tmpa11rihk4/tmpyv3o0x5b.py", line 1, in <module>
S = int( input())
^^^^^^^
EOFError: EOF when reading a line
| |
s120659755 | p02390 | u118723993 | 1436148317 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | S = int(input())
h =x // 3600;
m =x %3600 //60;
s =x % 60;
print(h, m, s, sep=':') | Traceback (most recent call last):
File "/tmp/tmp5uo77bvr/tmpv4u6jdcx.py", line 1, in <module>
S = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s236158424 | p02390 | u467309160 | 1436148478 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | S = int(input())
h = S // 3600
m = S % 3600 // 60
s = S % 60
print(h,m,s. sep=':') | File "/tmp/tmp78u9cz20/tmp3el9zjcf.py", line 5
print(h,m,s. sep=':')
^^^^^^^
SyntaxError: expression cannot contain assignment, perhaps you meant "=="?
| |
s219092803 | p02390 | u733449206 | 1436148558 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | S = int(input())
h = ??????????±????????¨????
m = ???????±????????¨????
s = ?§?????±????????¨????
print(h, m, s, sep=':') | File "/tmp/tmpdxl7bm3u/tmpeart2ofh.py", line 2
h = ??????????±????????¨????
^
SyntaxError: invalid character '±' (U+00B1)
| |
s666909563 | p02390 | u978086225 | 1436148603 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | S = int(input())
h = m * 60
m = s * 60
s = 1
print(h, m, s, sep=':') | Traceback (most recent call last):
File "/tmp/tmplj_0sprf/tmp7p0vqar4.py", line 1, in <module>
S = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s746771559 | p02390 | u389610071 | 1436148846 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | S = int(input())
h = S // 3600
m = S // 60
s = S % 60
print(h: m: s | File "/tmp/tmpcg6rfdcg/tmp3efmx_1n.py", line 5
print(h: m: s
^
SyntaxError: invalid syntax
| |
s335929368 | p02390 | u473077745 | 1436148889 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | S = int(input())
h = 46979 / 3600
m = 179 / 60
s = 46979 % 60
pirnt(h, m, s, sep=':') | Traceback (most recent call last):
File "/tmp/tmpm2vbjzz_/tmp20bym7tj.py", line 1, in <module>
S = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s137740651 | p02390 | u978086225 | 1436148998 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | S = int()
h = m * 60
m = s * 60
s = m / 60
print(h, m, s, sep=':') | Traceback (most recent call last):
File "/tmp/tmpui9tj0_f/tmpy2lqwv8p.py", line 2, in <module>
h = m * 60
^
NameError: name 'm' is not defined
| |
s622369038 | p02390 | u636711749 | 1436149037 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | S = int(input())
h = S // 3600
m = S % 3600 // 60
s = S % 60
print(h, m, s, cep=':') | Traceback (most recent call last):
File "/tmp/tmp20dgh4v2/tmp63rdthh0.py", line 1, in <module>
S = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s872811292 | p02390 | u335511832 | 1436149457 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | S = int(input())
h = S // 3600
m = S % 3600 // 60
s = (S % 3600) - (m * 60)
print(h,m,s sep=':') | File "/tmp/tmpprguqbzb/tmpd21f5wpz.py", line 5
print(h,m,s sep=':')
^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s188332867 | p02390 | u978086225 | 1436149476 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | S = (int(input))
h = m / 60
m = s / 60
s = m * 60
print(h, m, s, sep = ':') | Traceback (most recent call last):
File "/tmp/tmp1r3zv_ar/tmp_1lkmodq.py", line 1, in <module>
S = (int(input))
^^^^^^^^^^
TypeError: int() argument must be a string, a bytes-like object or a real number, not 'builtin_function_or_method'
| |
s801695877 | p02390 | u686134343 | 1436150014 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | S = int(input))
h = S // 3600
m = S % 3600 /60
s = S % 60
print(h,m,s, sep=":" | File "/tmp/tmpft5af3zl/tmp7okl7bgm.py", line 1
S = int(input))
^
SyntaxError: unmatched ')'
| |
s983892491 | p02390 | u686134343 | 1436150056 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | S = int(input))
h = S // 3600
m = S % 3600 /60
s = S % 60
print(h,m,s, sep=":" | File "/tmp/tmpnossu8lr/tmpqnm5zk_d.py", line 1
S = int(input))
^
SyntaxError: unmatched ')'
| |
s451674186 | p02390 | u978086225 | 1436150062 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | S = int(input))
h = S // 3600
m = S % 3600 // 60
s = S % 60
print(h, m, s, sep=':') | File "/tmp/tmp05zoj1qp/tmp1_n_a_6f.py", line 1
S = int(input))
^
SyntaxError: unmatched ')'
| |
s582257884 | p02390 | u473077745 | 1436270304 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | S = int(input())
h = 46979 / 3600
m = 46979 % 3600 /60
s = 46979 % 3600 % 60
print(h,m,s,sep=':' end='') | File "/tmp/tmp6zbt0_y9/tmpfktgzrrc.py", line 5
print(h,m,s,sep=':' end='')
^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s828891061 | p02390 | u473077745 | 1436271318 | Python | Python | py | Runtime Error | 0 | 0 | 97 | S = int(input())
h = 46979 / 3600
m = 46979 % 3600 /60
s = 46979 % 3600 % 60
print(h,m,s,sep=':') | Traceback (most recent call last):
File "/tmp/tmphx1kwpy_/tmp3jpz9ayb.py", line 1, in <module>
S = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s592041623 | p02390 | u473077745 | 1436271375 | Python | Python | py | Runtime Error | 0 | 0 | 85 | S = int(input())
h = S / 3600
m = S % 3600 /60
s = S % 3600 % 60
print(h,m,s,sep=':') | Traceback (most recent call last):
File "/tmp/tmp0g7n35ht/tmp8v5sxdij.py", line 1, in <module>
S = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s147282224 | p02390 | u484576700 | 1436448519 | Python | Python | py | Runtime Error | 0 | 0 | 115 | x = int(raw_input)
h = x / 3600
m = (x % 3600) / 60
s = (x % 3600) % 60
print str(h) + ":" + str(m) + ":" + str(s) | File "/tmp/tmpvwl4egtz/tmpgsfhlqai.py", line 5
print str(h) + ":" + str(m) + ":" + str(s)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s229336043 | p02390 | u715990255 | 1437320968 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | s = int(input())
h=s // 3600
m = s % 3600 // 60
ss = s % 3600 % 60
print(h:m:ss) | File "/tmp/tmph7ewvppm/tmp2j8ceulu.py", line 6
print(h:m:ss)
^
SyntaxError: invalid syntax
| |
s499672475 | p02390 | u669360983 | 1437549148 | Python | Python | py | Runtime Error | 0 | 0 | 54 | h,m,s=int(int,raw_input().split())
print 3600*h+60*m+s | File "/tmp/tmpyrzvwhxz/tmp0cv_z9ip.py", line 2
print 3600*h+60*m+s
^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s458504106 | p02390 | u669360983 | 1437549166 | Python | Python | py | Runtime Error | 0 | 0 | 55 | h,m,s=map(int,raw_input().split() )
print 3600*h+60*m+s | File "/tmp/tmpdjfcpuye/tmpdpqfb9n_.py", line 2
print 3600*h+60*m+s
^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s488750822 | p02390 | u745846646 | 1438570827 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | n=input()
print':'.join(map(str,[n/3600,n%3600/60,n%60])) | File "/tmp/tmp3_lknax_/tmpurp188e4.py", line 2
print':'.join(map(str,[n/3600,n%3600/60,n%60]))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s275919984 | p02390 | u180914582 | 1438571800 | Python | Python3 | py | Runtime Error | 0 | 0 | 172 | int main(void){
int S;
int h, m, s;
std::cin >> S;
std::cout << S / 3600 << ":" << (S / 60) % 60 << ":" << (S % 3600) % 60 << std::endl;
return 0;
} | File "/tmp/tmp7ocrphxj/tmp7yp48rq2.py", line 1
int main(void){
^^^^
SyntaxError: invalid syntax
| |
s811375326 | p02390 | u180914582 | 1438571926 | Python | Python3 | py | Runtime Error | 0 | 0 | 197 | #include<bits/stdc++.h>
int main(void){
int S;
int h, m, s;
std::cin >> S;
std::cout << S / 3600 << ":" << (S / 60) % 60 << ":" << (S % 3600) % 60 << std::endl;
return 0;
} | File "/tmp/tmpnpatuw_m/tmperyam5u8.py", line 3
int main(void){
^^^^
SyntaxError: invalid syntax
| |
s418910065 | p02390 | u686134343 | 1440644138 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | S = int(input())
h = S // 3600
m = S % 3600 // 60
s = S % 60
print(h, m, s, sep=':' | File "/tmp/tmp01a3a527/tmpzy5ru19p.py", line 5
print(h, m, s, sep=':'
^
SyntaxError: '(' was never closed
| |
s047215681 | p02390 | u253463900 | 1442199197 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | data = input()
sec = int(data)
h = sec %= 3600
sec -= h*3600
m = sec %= 60
sec -= m*60
print('{0}:{1}:{2}'.format(h, m, s)) | File "/tmp/tmp8rldsv69/tmpfyruop2j.py", line 4
h = sec %= 3600
^^
SyntaxError: invalid syntax
| |
s999654521 | p02390 | u253463900 | 1442199497 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | data = input()
sec = int(data)
h = sec %= 3600
sec -= h*3600
m = sec %= 60
sec -= m*60
print('{0}:{1}:{2}'.format(h, m, s)) | File "/tmp/tmpx48a25e_/tmpthka56os.py", line 4
h = sec %= 3600
^^
SyntaxError: invalid syntax
| |
s394860963 | p02390 | u313994256 | 1442846531 | Python | Python | py | Runtime Error | 0 | 0 | 158 | x = []
num_z = num_time/60
num_h = (num_time%60)/60
num_b = (num_time%60)%60
x.append(num_z)
x.append(num_h)
x.append(num_b)
x = map(str, x)
print ":".join(x) | File "/tmp/tmp8_pb4nh8/tmptv6kc_4t.py", line 9
print ":".join(x)
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s203447320 | p02390 | u989295536 | 1444484841 | Python | Python3 | py | Runtime Error | 0 | 0 | 149 | target = int(input())
s = 0
m,s = divmod(target,60)
if m == 0:
print("0:0:%d" % s)
else
h, m = divmod(m,60)
print("%d:%d:%d" % (h,m,s)) | File "/tmp/tmpbs261dpr/tmp5cmoq2wh.py", line 8
else
^
SyntaxError: expected ':'
| |
s988363320 | p02390 | u139034459 | 1445706088 | Python | Python | py | Runtime Error | 0 | 0 | 152 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
var = int(raw_input())
h = var / 3600
ms = var % 3600
m = ms / 60
s = ms % 60
print ":".join([h, m, s]) | File "/tmp/tmp9d59o1r3/tmpxc8kjqnt.py", line 11
print ":".join([h, m, s])
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s240102771 | p02390 | u529272062 | 1446964166 | Python | Python | py | Runtime Error | 0 | 0 | 85 | s=int(raw_input())
h,s=divmod(s,3600)
m,s=divmod(s,60)
print ({}:{}:{}).format(h,m,s) | File "/tmp/tmpt24d26ga/tmpbu0pp977.py", line 4
print ({}:{}:{}).format(h,m,s)
^
SyntaxError: invalid syntax
| |
s260810217 | p02390 | u529272062 | 1446964756 | Python | Python | py | Runtime Error | 0 | 0 | 100 | L=[]
s=int(raw_input())
L+=divmod(s,3600)
L+=divmod(L[1],60)
print ({}:{}:{}.format(L[0],L[2],L[3])) | File "/tmp/tmpixjmj96i/tmp6u1tchvp.py", line 5
print ({}:{}:{}.format(L[0],L[2],L[3]))
^
SyntaxError: invalid syntax
| |
s851030861 | p02390 | u529272062 | 1446964817 | Python | Python | py | Runtime Error | 0 | 0 | 100 | L=[]
s=int(raw_input())
L+=divmod(s,3600)
L+=divmod(L[1],60)
print ({}:{}:{}).format(L[0],L[2],L[3]) | File "/tmp/tmpmj1fs0ft/tmpdg7ksxps.py", line 5
print ({}:{}:{}).format(L[0],L[2],L[3])
^
SyntaxError: invalid syntax
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.