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
s458431112
p02390
u025362139
1496651924
Python
Python
py
Runtime Error
0
0
93
a = int("input()")/3600 a_p = int(input())%3600 b = a_p/60 b_p = a_p%60 print a,":",b,":",b_p
File "/tmp/tmpdcerwtpk/tmpwledv0r1.py", line 5 print a,":",b,":",b_p ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s009409985
p02390
u025362139
1496652134
Python
Python
py
Runtime Error
0
0
107
list[0] = int(input())/3600 a_p = int(input())%3600 list[1] = a_p/60 list[2] = a_p%60 print ":".join(list)
File "/tmp/tmpm7nyz_5g/tmp30j0qrqo.py", line 6 print ":".join(list) ^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s281096731
p02390
u025362139
1496652384
Python
Python
py
Runtime Error
0
0
116
list = [0] * 4 a = int(input()) list[0] = a/3600 a_p = a%3600 list[1] = a_p/60 list[2] = a_p%60 print ":".join(list)
File "/tmp/tmph_vahfka/tmpk51paihd.py", line 7 print ":".join(list) ^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s141811595
p02390
u025362139
1496652512
Python
Python
py
Runtime Error
0
0
116
list = [0] * 4 a = int(input()) list[0] = a/3600 a_p = a%3600 list[1] = a_p/60 list[2] = a_p%60 print ":".join(list)
File "/tmp/tmpwv7cck95/tmpumrsaiqg.py", line 7 print ":".join(list) ^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s203594462
p02390
u025362139
1496652865
Python
Python
py
Runtime Error
0
0
116
list = [0] * 4 a = int(input()) list[0] = a/3600 a_p = a%3600 list[1] = a_p/60 list[2] = a_p%60 print ":".join(list)
File "/tmp/tmpqve99eie/tmpbw0pxzzx.py", line 7 print ":".join(list) ^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s362596213
p02390
u025362139
1496653143
Python
Python
py
Runtime Error
0
0
115
list = [0] * 4 a = int(input()) list[0] = a/3600 a_p = a%3600 list[1] = a_p/60 list[2] = a_p%60 print ":".int(list)
File "/tmp/tmpwg2v4omh/tmpj2xtzudy.py", line 7 print ":".int(list) ^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s556446017
p02390
u675844759
1496797359
Python
Python3
py
Runtime Error
0
0
92
S = int(input()) in = divmod(S,3600) h = in[0] in = divmod(int[1],60) m = int[0] s = int[1]
File "/tmp/tmpoxon80qn/tmpxlxeqq6t.py", line 2 in = divmod(S,3600) ^^ SyntaxError: invalid syntax
s395554210
p02390
u675844759
1496797389
Python
Python3
py
Runtime Error
0
0
89
S = int(input()) in = divmod(S,3600) h = in[0] in = divmod(in[1],60) m = in[0] s = in[1]
File "/tmp/tmps3200166/tmpigxlutcx.py", line 2 in = divmod(S,3600) ^^ SyntaxError: invalid syntax
s478540513
p02390
u100370736
1496814363
Python
Python3
py
Runtime Error
0
0
63
a=input() b=a/3600 d=a%60 c=(a-b*3600-d)/60 print b,":",c,":",d
File "/tmp/tmp3aq4hih3/tmp2sbqtu91.py", line 5 print b,":",c,":",d ^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s925821988
p02390
u050103511
1497507901
Python
Python3
py
Runtime Error
0
0
83
S = int(input()) h = S // 3600 m = S % 3600 s = m % 60 print(h + ":" + m + ":" + s)
Traceback (most recent call last): File "/tmp/tmpwm9wr3hx/tmpp8dxzd_t.py", line 1, in <module> S = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s159720233
p02390
u261533743
1497508388
Python
Python3
py
Runtime Error
0
0
105
S = int(input()) h = int(S / (60 * 60)) m = int(S / 60) % 60 s = s % 60 print("{}:{}:{}".format(h,m,s))
Traceback (most recent call last): File "/tmp/tmp91f97jmj/tmpctw1izyu.py", line 1, in <module> S = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s098987870
p02390
u410114382
1497508470
Python
Python3
py
Runtime Error
0
0
127
import datetime t = datetime.time(1, 2, 3) print t print 'hour :', t.hour print 'minute:', t.minute print 'second:', t.second
File "/tmp/tmpuypuj6ov/tmpbigsazl2.py", line 4 print t ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s228144958
p02390
u050103511
1497508481
Python
Python3
py
Runtime Error
0
0
105
S = int(input()) h = int(S / 3600) m = int(S / 60) m = m % 60 s = m % 60 print({0}:{1}:{2}.format(h,m,s)}
File "/tmp/tmpj8n1zb3x/tmpb0cjbp03.py", line 6 print({0}:{1}:{2}.format(h,m,s)} ^ SyntaxError: closing parenthesis '}' does not match opening parenthesis '('
s528072680
p02390
u050103511
1497508509
Python
Python3
py
Runtime Error
0
0
105
S = int(input()) h = int(S / 3600) m = int(S / 60) m = m % 60 s = m % 60 print({0}:{1}:{2}.format(h,m,s))
File "/tmp/tmpf21aa9w0/tmpvfvfhec4.py", line 6 print({0}:{1}:{2}.format(h,m,s)) ^ SyntaxError: invalid syntax
s658263759
p02390
u050103511
1497508754
Python
Python3
py
Runtime Error
0
0
105
S = int(input()) h = int(S / 3600) m = int(S / 60) m = m % 60 s = S % 60 print({0}:{1}:{2}.format(h,m,s))
File "/tmp/tmpgkv_z428/tmpwl85d3ix.py", line 6 print({0}:{1}:{2}.format(h,m,s)) ^ SyntaxError: invalid syntax
s022241788
p02390
u658089986
1497508796
Python
Python3
py
Runtime Error
0
0
168
timesec = import() h = int(timesec/(60**2)) m = int(timesec%(60**2) / 60) s = int(timesec%(60**2) % 60) h = str(h) m = str(m) s = str(s) print( h + ':' + m + ':' +s )
File "/tmp/tmpcul2qxsn/tmp45y804o3.py", line 1 timesec = import() ^^^^^^ SyntaxError: invalid syntax
s762981389
p02390
u169794024
1497508852
Python
Python3
py
Runtime Error
0
0
73
S=int(input()) h=s/(60*60) m=s%(60*60)/60 s=s%(60*60)%60 print(h:m:s)
File "/tmp/tmptl8jv5ju/tmp8n1luyvc.py", line 9 print(h:m:s) ^ SyntaxError: invalid syntax
s577104297
p02390
u569585396
1497508856
Python
Python3
py
Runtime Error
0
0
69
S = int(input()) ko = ":" print("S[0:2]" + ko + S[2:3] + ko + S[3:5])
Traceback (most recent call last): File "/tmp/tmpbo2mohwd/tmp0o6_krex.py", line 1, in <module> S = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s749588415
p02390
u169794024
1497508987
Python
Python3
py
Runtime Error
0
0
73
S=int(input()) h=S/(60*60) m=S%(60*60)/60 s=S%(60*60)%60 print(h:m:s)
File "/tmp/tmpl360reh7/tmpfm368mj6.py", line 9 print(h:m:s) ^ SyntaxError: invalid syntax
s827498332
p02390
u433181015
1497509025
Python
Python3
py
Runtime Error
0
0
66
S = int(input()) h = S//3600 m = (S%3600)//60 s = S%m print(h:m:s)
File "/tmp/tmplpkpd62l/tmpmd48927p.py", line 5 print(h:m:s) ^ SyntaxError: invalid syntax
s725169504
p02390
u658089986
1497509101
Python
Python3
py
Runtime Error
0
0
156
timesec = import() h = int(timesec/(60**2)) m = int(timesec%(60**2) / 60) s = int(timesec%(60**2) % 60) h = str(h) m = str(m) s = str(s) ':'.join([h,m,s])
File "/tmp/tmpcedx3teo/tmpg4jcifya.py", line 1 timesec = import() ^^^^^^ SyntaxError: invalid syntax
s597131727
p02390
u169794024
1497509147
Python
Python3
py
Runtime Error
0
0
76
S=int(input()) h=S/(60**60) m=S%(60**60)/60 s=S%(60**60)%60 print(h:m:s)
File "/tmp/tmptmdnt1lm/tmp17n7nw52.py", line 9 print(h:m:s) ^ SyntaxError: invalid syntax
s242649109
p02390
u569585396
1497509160
Python
Python3
py
Runtime Error
0
0
82
S = int(input()) h = S[0:2] m = [2:3] s = [3:5] print("h" + ":" + "m" + ":" + "s")
File "/tmp/tmpzimbz5x3/tmptl5ij8v3.py", line 3 m = [2:3] ^ SyntaxError: invalid syntax
s519317622
p02390
u169794024
1497509259
Python
Python3
py
Runtime Error
0
0
64
S=int(input()) h=S/3600 m=S%3600/60 s=S%3600%60 print(h:m:s)
File "/tmp/tmpcetbw5_x/tmpht39tjwe.py", line 9 print(h:m:s) ^ SyntaxError: invalid syntax
s988032060
p02390
u323082382
1497509312
Python
Python3
py
Runtime Error
0
0
104
S = int(input()) a = S//3600 b = (S/3600-a)*3600 c = b//60 d = (b/60-b)*60 print(':'.join((a),(c),(d))
File "/tmp/tmpdmbev40e/tmpkre79dkc.py", line 8 print(':'.join((a),(c),(d)) ^ SyntaxError: '(' was never closed
s621381417
p02390
u623827446
1497509352
Python
Python3
py
Runtime Error
0
0
76
S=int(input()) h=int(S/3600) S2=S-h m=int(S2/60) s=S2-m print(h+':'+m+':'+s)
Traceback (most recent call last): File "/tmp/tmp9_8g4175/tmpzw881sd4.py", line 1, in <module> S=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s599236391
p02390
u169794024
1497509393
Python
Python3
py
Runtime Error
0
0
74
S=int(input()) h=S/3600 m=S%3600/60 s=S%3600%60 print(":"join( h,m,s))
File "/tmp/tmp7u9re_v9/tmptkzjdckk.py", line 9 print(":"join( h,m,s)) ^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s383125517
p02390
u059971171
1497509415
Python
Python3
py
Runtime Error
0
0
109
import math S = int(input()) h = math.floor(S/3600) m = (S - h)/60 s = S - h - m print(h + ":" + m + ":" + s)
Traceback (most recent call last): File "/tmp/tmpelkw1fvd/tmpt9suwis6.py", line 2, in <module> S = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s485724217
p02390
u169794024
1497509554
Python
Python3
py
Runtime Error
0
0
74
S=int(input()) h=S/3600 m=S%3600/60 s=S%3600%60 print(":".join(h:m:s))
File "/tmp/tmpz5rfqceb/tmpf3nia2rk.py", line 9 print(":".join(h:m:s)) ^ SyntaxError: invalid syntax
s838931300
p02390
u623827446
1497509558
Python
Python3
py
Runtime Error
0
0
78
S=int(input()) h=int(S/3600) S2=S-h m=int(S2/60) s=S2-m print(':'.join[h,m,s])
Traceback (most recent call last): File "/tmp/tmpdlrod01i/tmpp8stux5n.py", line 1, in <module> S=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s631241933
p02390
u169794024
1497509603
Python
Python3
py
Runtime Error
0
0
74
S=int(input()) h=S/3600 m=S%3600/60 s=S%3600%60 print(":".join(h,m,s))
Traceback (most recent call last): File "/tmp/tmpusj6lrfn/tmpidk087co.py", line 1, in <module> S=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s077165054
p02390
u027278270
1497509862
Python
Python3
py
Runtime Error
0
0
74
S = int(input()) h = S//3600 m = (S%3600)//60 s = (S%3600)%60 print(h:m:s)
File "/tmp/tmp6_my815v/tmpm8d4ow9u.py", line 5 print(h:m:s) ^ SyntaxError: invalid syntax
s737478877
p02390
u486972540
1497509894
Python
Python3
py
Runtime Error
0
0
79
S = int(input()) h = S // 3600 m = (S % 3600) // 60 s = S % 3600 print(h:m:s)
File "/tmp/tmpso65k60f/tmp3xi0hvb8.py", line 6 print(h:m:s) ^ SyntaxError: invalid syntax
s131526440
p02390
u721221949
1497509923
Python
Python3
py
Runtime Error
0
0
75
S = int(input()) h = S//3600 m = (S%3600)//60 s = (S%3600)%60 print(h:m:s)
File "/tmp/tmp6hbuu7v1/tmp07gtkj57.py", line 5 print(h:m:s) ^ SyntaxError: invalid syntax
s620579663
p02390
u721221949
1497509970
Python
Python3
py
Runtime Error
0
0
90
S = int(input()) h = int(S)//3600 m = (int(S)%3600)//60 s = (int(S)%3600)%60 print(h:m:s)
File "/tmp/tmpb30b17cp/tmpjdtoy157.py", line 5 print(h:m:s) ^ SyntaxError: invalid syntax
s765601754
p02390
u486972540
1497510006
Python
Python3
py
Runtime Error
0
0
86
S = int(input()) h = S // 3600 m = (S % 3600) // 60 s = (S % 3600) % 60 print(h:m:s)
File "/tmp/tmp81uh6ebu/tmpdxo6xwjb.py", line 6 print(h:m:s) ^ SyntaxError: invalid syntax
s040059601
p02390
u323082382
1497510025
Python
Python3
py
Runtime Error
0
0
96
S = int(input()) a = S//3600 #h b = S%3600//60 #m c = (S%3600)//60 print(":".join((a),(b),(c))
File "/tmp/tmpklqtojg2/tmpyxr7qgf3.py", line 7 print(":".join((a),(b),(c)) ^ SyntaxError: '(' was never closed
s062593586
p02390
u323082382
1497510081
Python
Python3
py
Runtime Error
0
0
97
S = int(input()) a = S//3600 #h b = S%3600//60 #m c = (S%3600)//60 print(":".join[(a),(b),(c)])
Traceback (most recent call last): File "/tmp/tmpxg1nxr6_/tmp4iqz3_1z.py", line 1, in <module> S = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s073473845
p02390
u169794024
1497510203
Python
Python3
py
Runtime Error
0
0
74
S=int(input()) h=S//3600 m=S%3600//60 s=S%3600%60 print":".join(h,m,s)
File "/tmp/tmpr9pwrcf5/tmpl5qufq7_.py", line 9 print":".join(h,m,s) ^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s572630279
p02390
u059971171
1497510223
Python
Python3
py
Runtime Error
0
0
160
import math S = int(input()) print(math.floor(S/3600)+":"+math.floor(S -(math.floor(S/3600)/60)+":"+ S -math.floor(S/3600)-math.floor(S-(math.floor(S/3600)/60))
File "/tmp/tmp0bemd66u/tmpwovmftox.py", line 3 print(math.floor(S/3600)+":"+math.floor(S -(math.floor(S/3600)/60)+":"+ S -math.floor(S/3600)-math.floor(S-(math.floor(S/3600)/60)) ^ SyntaxError: '(' was never closed
s982687201
p02390
u623827446
1497510395
Python
Python3
py
Runtime Error
0
0
87
S=int(input()) h=int(S/3600) S2=S-h m=int(S2/60) s=S2-m print('{}:{}:{}',format(h,m,s))
Traceback (most recent call last): File "/tmp/tmpw_yfmhn1/tmp5tq4clfa.py", line 1, in <module> S=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s428331654
p02390
u169794024
1497510397
Python
Python3
py
Runtime Error
0
0
85
S=int(input()) h=S/3600 m=S%3600/60 s=S%3600%60 print('{0}:{1}:{2}'format(h,m,s))
File "/tmp/tmpsempm3wa/tmpzk6w_dci.py", line 9 print('{0}:{1}:{2}'format(h,m,s)) ^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s965563042
p02390
u169794024
1497510457
Python
Python3
py
Runtime Error
0
0
93
S=int(input()) h=S/3600 m=(S%3600)/60 s=(S%3600)%60 print('{0}:{1}:{2}'format(h,m,s))
File "/tmp/tmpkgmgkwdj/tmpiek6ml9h.py", line 9 print('{0}:{1}:{2}'format(h,m,s)) ^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s131917158
p02390
u923630348
1497510458
Python
Python3
py
Runtime Error
0
0
31
print ('{}:{}:{}'.format(h,m,s)
File "/tmp/tmpunastktm/tmpi0991hip.py", line 1 print ('{}:{}:{}'.format(h,m,s) ^ SyntaxError: '(' was never closed
s308393849
p02390
u623827446
1497510497
Python
Python3
py
Runtime Error
0
0
82
S=int(input()) h=int(S/3600) m=int(S/60)%60 s=S%60 print('{}:{}:{}',format(h,m,s))
Traceback (most recent call last): File "/tmp/tmpuihaqn7z/tmpg185ym9z.py", line 1, in <module> S=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s272786066
p02390
u059971171
1497510500
Python
Python3
py
Runtime Error
0
0
99
S = int(input()) h = S//3600 m = (S - h)//60 s = S - (h*3600) - (m*60) print(h + ":" + m + ":" + s)
Traceback (most recent call last): File "/tmp/tmp1hm7gb9v/tmprjzf5m12.py", line 1, in <module> S = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s054344993
p02390
u486972540
1497510518
Python
Python3
py
Runtime Error
0
0
101
S = int(input()) h = int(S / (60*60)) m = int(S / 60) % 60 s = S % 60 print('{}:{}:{}'.format(h.m.s)
File "/tmp/tmpsbdqiwib/tmp5vjupwjq.py", line 6 print('{}:{}:{}'.format(h.m.s) ^ SyntaxError: '(' was never closed
s830209156
p02390
u486972540
1497510532
Python
Python3
py
Runtime Error
0
0
104
S = int(input()) h = int(S / (60*60)) m = int(S / 60) % 60 s = S % 60 print('{ }:{ }:{ }'.format(h.m.s)
File "/tmp/tmpz9ochaz9/tmpxlvuzyqy.py", line 6 print('{ }:{ }:{ }'.format(h.m.s) ^ SyntaxError: '(' was never closed
s461437697
p02390
u486972540
1497510556
Python
Python3
py
Runtime Error
0
0
104
S = int(input()) h = int(S / (60*60)) m = int(S / 60) % 60 s = S % 60 print('{0}:{1}:{2}'.format(h.m.s)
File "/tmp/tmplpns0cj9/tmpc48rrsgm.py", line 6 print('{0}:{1}:{2}'.format(h.m.s) ^ SyntaxError: '(' was never closed
s627476103
p02390
u818923713
1497510611
Python
Python3
py
Runtime Error
0
0
103
S = int(input()) h = int(S / (60 * 60)) m = int(S / 60) % 60 S = S % 60 print('{}:{}:{}'.format(h,m,s)
File "/tmp/tmpxo4mb05y/tmp24jm9_7o.py", line 6 print('{}:{}:{}'.format(h,m,s) ^ SyntaxError: '(' was never closed
s086551389
p02390
u818923713
1497510643
Python
Python3
py
Runtime Error
0
0
104
S = int(input()) h = int(S / (60 * 60)) m = int(S / 60) % 60 S = S % 60 print('{}:{}:{}'.format(h,m,s))
Traceback (most recent call last): File "/tmp/tmpxm3txhsc/tmpafx7u7fm.py", line 1, in <module> S = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s460664185
p02390
u486972540
1497510712
Python
Python3
py
Runtime Error
0
0
123
S = int(input()) h = int(S // (60*60)) m = int((S % 3600) // 60) s = int((S % 3600) %60) print('{0}:{1}:{2}'.format(h.m.s)
File "/tmp/tmpzw64_94d/tmpqpt8vyvu.py", line 6 print('{0}:{1}:{2}'.format(h.m.s) ^ SyntaxError: '(' was never closed
s511171624
p02390
u486972540
1497510733
Python
Python3
py
Runtime Error
0
0
124
S = int(input()) h = int(S // (60*60)) m = int((S % 3600) // 60) s = int((S % 3600) %60) print('{0}:{1}:{2}'.format(h.m.s))
Traceback (most recent call last): File "/tmp/tmpvp42x5p4/tmp5acecab9.py", line 1, in <module> S = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s335630606
p02390
u565553603
1497510741
Python
Python3
py
Runtime Error
0
0
106
S = int(input()) h = int(S / (60*60)) m = int(S / 60) % 60 s = S % 60 print('{ }:{ }:{ }' .format(h,m,s))
Traceback (most recent call last): File "/tmp/tmp08x2jucp/tmpv6tcj8v0.py", line 1, in <module> S = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s793811210
p02390
u486972540
1497510789
Python
Python3
py
Runtime Error
0
0
104
S = int(input()) h = int(S // (60*60)) m = int(S / 60) % 60 s = S%60 print('{0}:{1}:{2}'.format(h.m.s))
Traceback (most recent call last): File "/tmp/tmphtplb899/tmp60xhkxs6.py", line 1, in <module> S = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s533530758
p02390
u486972540
1497510798
Python
Python3
py
Runtime Error
0
0
101
S = int(input()) h = int(S // (60*60)) m = int(S / 60) % 60 s = S%60 print('{}:{}:{}'.format(h.m.s))
Traceback (most recent call last): File "/tmp/tmpzyahr882/tmp9r_f7j6t.py", line 1, in <module> S = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s005325894
p02390
u333596716
1497511039
Python
Python3
py
Runtime Error
0
0
108
S = int(input()) h = int(S / 60) / 60 m = int(S / 60) % 60 s = int(S % 60) print"{0}:{1}:{2}",format(h,m,s)
File "/tmp/tmpzd65qct4/tmph6zhmamg.py", line 6 print"{0}:{1}:{2}",format(h,m,s) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s774476266
p02390
u486972540
1497511091
Python
Python3
py
Runtime Error
0
0
102
S = int(input) h = S // 3600 m = (S % 3600) // 60 s = (S % 3600) % 60 print('{}:{}:{}'.format(h,m,s))
Traceback (most recent call last): File "/tmp/tmpm8_wjm9d/tmpsydkgfvr.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'
s191958982
p02390
u658089986
1497511159
Python
Python3
py
Runtime Error
0
0
163
timesec = import() h = int(timesec/(60**2)) m = int(timesec%(60**2) / 60) s = int(timesec%(60**2) % 60) h = str(h) m = str(m) s = str(s) print(':'.join([h,m,s]))
File "/tmp/tmpjmczmc1h/tmpji54hade.py", line 1 timesec = import() ^^^^^^ SyntaxError: invalid syntax
s448734258
p02390
u333596716
1497511163
Python
Python3
py
Runtime Error
0
0
116
S = int(input()) h = int((S / 60) / 60) % 60 m = int(S / 60) % 60 s = int(S % 60) print"{0}:{1}:{2}".format(h,m,s)
File "/tmp/tmp7kje2vx_/tmpb9a_vtku.py", line 6 print"{0}:{1}:{2}".format(h,m,s) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s179208773
p02390
u658089986
1497511170
Python
Python3
py
Runtime Error
0
0
163
timesec = import() h = int(timesec/(60**2)) m = int(timesec%(60**2) / 60) s = int(timesec%(60**2) % 60) h = str(h) m = str(m) s = str(s) print(':'.join([h,m,s]))
File "/tmp/tmp05ikzymn/tmpj5qono58.py", line 1 timesec = import() ^^^^^^ SyntaxError: invalid syntax
s311903305
p02390
u658089986
1497511171
Python
Python3
py
Runtime Error
0
0
163
timesec = import() h = int(timesec/(60**2)) m = int(timesec%(60**2) / 60) s = int(timesec%(60**2) % 60) h = str(h) m = str(m) s = str(s) print(':'.join([h,m,s]))
File "/tmp/tmphwzed8te/tmppc2_jt3g.py", line 1 timesec = import() ^^^^^^ SyntaxError: invalid syntax
s019672132
p02390
u658089986
1497511173
Python
Python3
py
Runtime Error
0
0
163
timesec = import() h = int(timesec/(60**2)) m = int(timesec%(60**2) / 60) s = int(timesec%(60**2) % 60) h = str(h) m = str(m) s = str(s) print(':'.join([h,m,s]))
File "/tmp/tmp9ebzv5bx/tmpt05lnvzh.py", line 1 timesec = import() ^^^^^^ SyntaxError: invalid syntax
s048936472
p02390
u658089986
1497511175
Python
Python3
py
Runtime Error
0
0
163
timesec = import() h = int(timesec/(60**2)) m = int(timesec%(60**2) / 60) s = int(timesec%(60**2) % 60) h = str(h) m = str(m) s = str(s) print(':'.join([h,m,s]))
File "/tmp/tmp50kk19rc/tmpttpkuyyy.py", line 1 timesec = import() ^^^^^^ SyntaxError: invalid syntax
s775890717
p02390
u658089986
1497511434
Python
Python3
py
Runtime Error
0
0
163
timesec = import() h = int(timesec/(60**2)) m = int(timesec%(60**2) / 60) s = int(timesec%(60**2) % 60) h = str(h) m = str(m) s = str(s) print(":".join([h,m,s]))
File "/tmp/tmpucg1un62/tmpvo_6enxr.py", line 1 timesec = import() ^^^^^^ SyntaxError: invalid syntax
s705994828
p02390
u658089986
1497511441
Python
Python3
py
Runtime Error
0
0
163
timesec = import() h = int(timesec/(60**2)) m = int(timesec%(60**2) / 60) s = int(timesec%(60**2) % 60) h = str(h) m = str(m) s = str(s) print(":".join([h,m,s]))
File "/tmp/tmpp9t7mpr_/tmpxp5b6wj6.py", line 1 timesec = import() ^^^^^^ SyntaxError: invalid syntax
s498281427
p02390
u658089986
1497511442
Python
Python3
py
Runtime Error
0
0
163
timesec = import() h = int(timesec/(60**2)) m = int(timesec%(60**2) / 60) s = int(timesec%(60**2) % 60) h = str(h) m = str(m) s = str(s) print(":".join([h,m,s]))
File "/tmp/tmpqlai83r0/tmpy0sg152n.py", line 1 timesec = import() ^^^^^^ SyntaxError: invalid syntax
s554465782
p02390
u658089986
1497511444
Python
Python3
py
Runtime Error
0
0
163
timesec = import() h = int(timesec/(60**2)) m = int(timesec%(60**2) / 60) s = int(timesec%(60**2) % 60) h = str(h) m = str(m) s = str(s) print(":".join([h,m,s]))
File "/tmp/tmpggkk06e2/tmpqvd6ogu1.py", line 1 timesec = import() ^^^^^^ SyntaxError: invalid syntax
s703298743
p02390
u658089986
1497511447
Python
Python3
py
Runtime Error
0
0
163
timesec = import() h = int(timesec/(60**2)) m = int(timesec%(60**2) / 60) s = int(timesec%(60**2) % 60) h = str(h) m = str(m) s = str(s) print(":".join([h,m,s]))
File "/tmp/tmpaddw6q6w/tmpf13envkx.py", line 1 timesec = import() ^^^^^^ SyntaxError: invalid syntax
s258571788
p02390
u658089986
1497511448
Python
Python3
py
Runtime Error
0
0
163
timesec = import() h = int(timesec/(60**2)) m = int(timesec%(60**2) / 60) s = int(timesec%(60**2) % 60) h = str(h) m = str(m) s = str(s) print(":".join([h,m,s]))
File "/tmp/tmp6lyggp45/tmp44c3a8vv.py", line 1 timesec = import() ^^^^^^ SyntaxError: invalid syntax
s510264424
p02390
u658089986
1497511450
Python
Python3
py
Runtime Error
0
0
163
timesec = import() h = int(timesec/(60**2)) m = int(timesec%(60**2) / 60) s = int(timesec%(60**2) % 60) h = str(h) m = str(m) s = str(s) print(":".join([h,m,s]))
File "/tmp/tmprlkgmsx5/tmps0e0vosn.py", line 1 timesec = import() ^^^^^^ SyntaxError: invalid syntax
s164606046
p02390
u658089986
1497511497
Python
Python3
py
Runtime Error
0
0
163
timesec = import() h = int(timesec/(60**2)) m = int(timesec%(60**2) / 60) s = int(timesec%(60**2) % 60) h = str(h) m = str(m) s = str(s) print(":".join([h,m,s]))
File "/tmp/tmpuy416y11/tmpr0ql14w8.py", line 1 timesec = import() ^^^^^^ SyntaxError: invalid syntax
s837792398
p02390
u692161606
1497512995
Python
Python3
py
Runtime Error
0
0
103
S = int(input)) h = int(S / (60 * 60)) m = int(S / 60) % 60 s = S % 60 print('{}:{}:{}:.format(h,m,s))
File "/tmp/tmp3gv97rys/tmpmlfnn91k.py", line 1 S = int(input)) ^ SyntaxError: unmatched ')'
s084457544
p02390
u200401481
1497807071
Python
Python3
py
Runtime Error
0
0
82
s = int(input()) h = s/3600 m = (s%3600)/60 s = ((s%3600)%60) print(h+":"+m+":"+s)
Traceback (most recent call last): File "/tmp/tmpc23a_bgg/tmpqdio_8g7.py", line 1, in <module> s = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s964507834
p02390
u776018831
1498031718
Python
Python3
py
Runtime Error
0
0
18
??????????????????
File "/tmp/tmpswyrjs87/tmp9ztnmgdx.py", line 1 ?????????????????? ^ SyntaxError: invalid syntax
s208018766
p02390
u776018831
1498031753
Python
Python3
py
Runtime Error
0
0
18
??????????????????
File "/tmp/tmp2qr3ylmh/tmp2k4lkods.py", line 1 ?????????????????? ^ SyntaxError: invalid syntax
s255124360
p02390
u776018831
1498031774
Python
Python3
py
Runtime Error
0
0
18
??????????????????
File "/tmp/tmp1m9s6d84/tmpsakqe27u.py", line 1 ?????????????????? ^ SyntaxError: invalid syntax
s851511801
p02390
u038835138
1498383340
Python
Python
py
Runtime Error
0
0
60
S=int(raw_input()) print S/3600 + ":" + S/60%60 + ":" + S%60
File "/tmp/tmpf7x_hgah/tmpb9z64f1s.py", line 2 print S/3600 + ":" + S/60%60 + ":" + S%60 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s178356368
p02390
u729486845
1498570935
Python
Python3
py
Runtime Error
0
0
103
s=int(input()) hh=int(s/3600) mm=int((s%3600)/60) ss+int(s%60) print(str(hh)+":"+str(mm)+":"+str(ss))
Traceback (most recent call last): File "/tmp/tmpe9f99nif/tmplbtx_eqy.py", line 1, in <module> s=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s627386164
p02390
u844704750
1498680249
Python
Python
py
Runtime Error
0
0
134
S_input = input() S_ans = S_input % 60 M = int(S_input / 60) M_ans = M % 60 H_ans = int(M / 60) print "%d:%d:%d".(S_ans, M_ans, H_ans)
File "/tmp/tmptizzu2bi/tmpzq7z_ian.py", line 6 print "%d:%d:%d".(S_ans, M_ans, H_ans) ^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s883729472
p02390
u844704750
1498681077
Python
Python3
py
Runtime Error
0
0
136
S_input = input() S_ans = S_input % 60 M = int(S_input / 60) M_ans = M % 60 H_ans = int(M / 60) print ("%d:%d:%d"%(H_ans, M_ans, S_ans))
Traceback (most recent call last): File "/tmp/tmp3yuhog35/tmp0z4y_8f6.py", line 1, in <module> S_input = input() ^^^^^^^ EOFError: EOF when reading a line
s546394912
p02390
u844704750
1498681129
Python
Python3
py
Runtime Error
0
0
136
S_input = input() S_ans = S_input % 60 M = int(S_input / 60) M_ans = M % 60 H_ans = int(M / 60) print ("%d:%d:%d"%(H_ans, M_ans, S_ans))
Traceback (most recent call last): File "/tmp/tmp443e4lj0/tmpzp2hdksq.py", line 1, in <module> S_input = input() ^^^^^^^ EOFError: EOF when reading a line
s140444049
p02390
u923630348
1498716395
Python
Python3
py
Runtime Error
0
0
94
s = gets.to_i h = (s/3600).floor s = s%3600 m = (s/60).floor s = s%60 print h,":",m,":",s,"\n"
File "/tmp/tmpxayrbakd/tmp_lamqy3k.py", line 6 print h,":",m,":",s,"\n" ^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s533045839
p02390
u923630348
1498716440
Python
Python3
py
Runtime Error
0
0
95
s = input() h = s/3600 s = s%3600 m = s/60 s = s%60 print str(h) + ":" + str(m) + ":" + str(s)
File "/tmp/tmp5p46wjqh/tmp16v14o8p.py", line 7 print str(h) + ":" + str(m) + ":" + str(s) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s566700623
p02390
u923630348
1498716453
Python
Python3
py
Runtime Error
0
0
95
s = input() h = s/3600 s = s%3600 m = s/60 s = s%60 print str(h) + ":" + str(m) + ":" + str(s)
File "/tmp/tmpnqisnxe9/tmpnq2q7_53.py", line 7 print str(h) + ":" + str(m) + ":" + str(s) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s071638901
p02390
u923630348
1498716620
Python
Python3
py
Runtime Error
0
0
111
#coding: UTF-8 s = input() h = s/3600 s = s%3600 m = s/60 s = s%60 print str(h) + ":" + str(m) + ":" + str(s)
File "/tmp/tmpmxz8r7lb/tmpq8xgnj5f.py", line 9 print str(h) + ":" + str(m) + ":" + str(s) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s279303903
p02390
u923630348
1498716661
Python
Python3
py
Runtime Error
0
0
95
s = input() h = s/3600 s = s%3600 m = s/60 s = s%60 print str(h) + ":" + str(m) + ":" + str(s)
File "/tmp/tmpkeaw54pv/tmpz5snqe8k.py", line 7 print str(h) + ":" + str(m) + ":" + str(s) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s224548554
p02390
u889427239
1499141607
Python
Python3
py
Runtime Error
0
0
83
S = int(input()) h = int(S//3600) m = S%3600//60 s = S%3600%60 print(h+":"+m+":"+s)
Traceback (most recent call last): File "/tmp/tmpoo34hiur/tmp1ikqy00c.py", line 1, in <module> S = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s115197865
p02390
u350064373
1499236486
Python
Python3
py
Runtime Error
0
0
101
time = input("") h = time // 3600 h2 = time % 3600 m = h2 // 60 m2 = h2 % 60 s = m2 print(h+:+m+:+s)
File "/tmp/tmpg3n7wg94/tmpn4ufq7bc.py", line 8 print(h+:+m+:+s) ^ SyntaxError: invalid syntax
s916249073
p02390
u311299757
1499694785
Python
Python3
py
Runtime Error
0
0
61
print("{}:{}:{}".format(input()/60, input/3600, input()%3600)
File "/tmp/tmpfg91me9b/tmpwhewba6y.py", line 1 print("{}:{}:{}".format(input()/60, input/3600, input()%3600) ^ SyntaxError: '(' was never closed
s310971972
p02390
u311299757
1499694801
Python
Python3
py
Runtime Error
0
0
63
print("{}:{}:{}".format(input()/60, input()/3600, input()%3600)
File "/tmp/tmpvm_qiimc/tmpund5xb0g.py", line 1 print("{}:{}:{}".format(input()/60, input()/3600, input()%3600) ^ SyntaxError: '(' was never closed
s682850149
p02390
u311299757
1499694812
Python
Python3
py
Runtime Error
0
0
64
print("{}:{}:{}".format(input()/60, input()/3600, input()%3600))
Traceback (most recent call last): File "/tmp/tmppo_io62a/tmpj8v55xrp.py", line 1, in <module> print("{}:{}:{}".format(input()/60, input()/3600, input()%3600)) ^^^^^^^ EOFError: EOF when reading a line
s015523893
p02390
u043639882
1499818586
Python
Python3
py
Runtime Error
0
0
76
S=int(input()) h=int(S / 3600) m=int((s / 3600) /60) s=int(((s/3600)/60)/60)
Traceback (most recent call last): File "/tmp/tmpjvh12req/tmprggu3661.py", line 1, in <module> S=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s444861941
p02390
u858885710
1500195175
Python
Python3
py
Runtime Error
0
0
93
sec = int(input()) print('{}:{}:{}'.format(sec//3600, (sec//60)%60, sec%60)javascript:void(0)
File "/tmp/tmpy59xe_uv/tmpf_j9admx.py", line 2 print('{}:{}:{}'.format(sec//3600, (sec//60)%60, sec%60)javascript:void(0) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s116926900
p02390
u142321256
1502346272
Python
Python3
py
Runtime Error
0
0
79
in = input() h=in/3600 m=in/60-60*h s=in%60 print(str(h)+':'+str(m)+':'+str(s))
File "/tmp/tmpi_a5zyf3/tmpfoi0_2a_.py", line 1 in = input() ^^ SyntaxError: invalid syntax
s376094264
p02390
u142321256
1502346339
Python
Python3
py
Runtime Error
0
0
79
in = input() h=in/3600 m=in/60-60*h s=in%60 print(str(h)+':'+str(m)+':'+str(s))
File "/tmp/tmpc4bppnjr/tmpgnzu43dl.py", line 1 in = input() ^^ SyntaxError: invalid syntax
s232596989
p02390
u142321256
1502346430
Python
Python3
py
Runtime Error
0
0
79
in = input() h=in/3600 m=in/60-60*h s=in%60 print(str(h)+':'+str(m)+':'+str(s))
File "/tmp/tmpj2lrcyc3/tmpjs4urwea.py", line 1 in = input() ^^ SyntaxError: invalid syntax
s209877416
p02390
u142321256
1502346496
Python
Python3
py
Runtime Error
0
0
90
in = input() h=in/3600 m=in/60-60*h s=in%60 print('a') print(str(h)+':'+str(m)+':'+str(s))
File "/tmp/tmpxa10g2th/tmpaizsgh6c.py", line 1 in = input() ^^ SyntaxError: invalid syntax
s303648321
p02390
u744121389
1502359528
Python
Python3
py
Runtime Error
0
0
136
x = int(input()) a = x / 60 hour = a / 60 minute = x - (hour * 60) second = x - 60 * (hour + minute) print(str(hour:minute:second))
File "/tmp/tmpsnge9eed/tmp8ctz8fxl.py", line 11 print(str(hour:minute:second)) ^ SyntaxError: invalid syntax
s568071818
p02390
u853619096
1502509215
Python
Python3
py
Runtime Error
0
0
96
s=int(input()) h=s//3600 ss=(ss-3600*h)//60 se=(ss-3600*h-h*60) print("{}:{}:{}".format(h,ss,se)
File "/tmp/tmp_75b1ctv/tmp2tfulgnv.py", line 5 print("{}:{}:{}".format(h,ss,se) ^ SyntaxError: '(' was never closed