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 / 3600
m = (S - h*3600) / 60
s = S - (h * 3600 + m * 60)
print "%d:%d:%d" % (h, m, 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)
print "%d:%d:%d" % (h, m, s) | 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"""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""")))
f.close()
os.chmod(file, 0o755)
os.system("cp %s ./run" % file)
if os.system("./run") != 0:
print(1/0) | 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"""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""")))
f.close()
os.chmod(file, 0o755)
os.system("cp %s ./run" % file)
if os.system("./run") != 0:
print(1/0) | 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, s) | 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.