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
s155419720
p02390
u744121389
1502589786
Python
Python3
py
Runtime Error
0
0
93
S = int(input()) s = S % 3600 h = S / 3600 m = S - (h * 60) - s print(str(h,m,s,sep=":"))
Traceback (most recent call last): File "/tmp/tmpai3a10a0/tmpkudg8ij7.py", line 1, in <module> S = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s458753296
p02390
u117053676
1502798255
Python
Python3
py
Runtime Error
0
0
121
in_sec = int(input()) sec = in_sec % 60 min = (in_sec // 60) % 60 hour = (in_sec // 3600 ) print(hour,min,sec,sep(":"))
Traceback (most recent call last): File "/tmp/tmp01xfmdix/tmp9uu57we8.py", line 1, in <module> in_sec = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s968969972
p02390
u744121389
1502851816
Python
Python3
py
Runtime Error
0
0
118
S = int(input()) h = intS // 3600 m = S % 3600 // 60 s = S % 3600 % 60 print(str(h) + ':' + str(m) + ':' + str(s))
Traceback (most recent call last): File "/tmp/tmpq7xjry88/tmpceq1zeax.py", line 1, in <module> S = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s354859604
p02390
u283452598
1503038965
Python
Python3
py
Runtime Error
0
0
124
seconds=int(input()) hour, amari = divmod(seconds,3600) minute, second = divmod(amari,60) print(hour+":"+minute+":"+second)
Traceback (most recent call last): File "/tmp/tmpi5zcm7z0/tmpismhpiha.py", line 1, in <module> seconds=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s746071791
p02390
u450020188
1503472484
Python
Python3
py
Runtime Error
0
0
134
time = int(input()) hour = time // 3600 minute = (time % 3600) // 60 second = (time % 3600) % 60 print hour,":", minute, ":", second
File "/tmp/tmpbq3xljnx/tmpqvihbvnu.py", line 7 print hour,":", minute, ":", second ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s554759538
p02390
u096862087
1503479964
Python
Python3
py
Runtime Error
0
0
83
total = (int)input() s = total%3600 m = (total-(s/60))%60 h = total-(s/3600)-(m/60)
File "/tmp/tmpa7agyqez/tmpurv0tgz0.py", line 1 total = (int)input() ^^^^^ SyntaxError: invalid syntax
s458360944
p02390
u096862087
1503480021
Python
Python3
py
Runtime Error
0
0
118
total = (int)input() s = total%3600 m = (total-(s/60))%60 h = total-(s/3600)-(m/60) print("{0}:{1}:{2}".format(h,m,s))
File "/tmp/tmpp59fct72/tmpqcv9mmjg.py", line 1 total = (int)input() ^^^^^ SyntaxError: invalid syntax
s299828196
p02390
u096862087
1503480056
Python
Python3
py
Runtime Error
0
0
118
total = (int)input() s = total%3600 m = (total-(s/60))%60 h = total-(s/3600)-(m/60) print("{0}:{1}:{2}".format(h,m,s))
File "/tmp/tmpk0cifev2/tmpmsyfh4eg.py", line 1 total = (int)input() ^^^^^ SyntaxError: invalid syntax
s839909429
p02390
u633333374
1503813535
Python
Python
py
Runtime Error
0
0
88
s = int(input()) a = s / 3600 b = (s - a) / 60 c = s - a - b print a + ":" + b + ":" + c
File "/tmp/tmpawh6mnil/tmpx7934osm.py", line 5 print a + ":" + b + ":" + c ^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s559063684
p02390
u132415474
1504517142
Python
Python3
py
Runtime Error
0
0
99
x = int(input()) h, remainder = divmod(x, 60*60) m, s = divmod(remainder, 60) print(f"{h}:{m}:{s}")
Traceback (most recent call last): File "/tmp/tmp_ywkvkt9/tmphks3894s.py", line 1, in <module> x = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s004334025
p02390
u294922877
1504711340
Python
Python3
py
Runtime Error
0
0
67
h,m=divmod(int(input()),3600) m,s=divmod(m,60) print(h+':'+m+':'+s)
Traceback (most recent call last): File "/tmp/tmp7kwk0mcq/tmpvakfvvdq.py", line 1, in <module> h,m=divmod(int(input()),3600) ^^^^^^^ EOFError: EOF when reading a line
s059310817
p02390
u933096856
1504897798
Python
Python3
py
Runtime Error
0
0
115
h,m,s=0,0,int(input()) while s >= 3600: s-=3600 h+=1 while m >= 60: s-=60 m+=1 print(h+':'+m+':'+s)
Traceback (most recent call last): File "/tmp/tmp6ruch9nz/tmpi6j1pz_k.py", line 1, in <module> h,m,s=0,0,int(input()) ^^^^^^^ EOFError: EOF when reading a line
s657113798
p02390
u933096856
1504897909
Python
Python3
py
Runtime Error
0
0
115
h,m,s=0,0,int(input()) while s >= 3600: s-=3600 h+=1 while s >= 60: s-=60 m+=1 print(h+':'+m+':'+s)
Traceback (most recent call last): File "/tmp/tmptnl2314r/tmptt5einyz.py", line 1, in <module> h,m,s=0,0,int(input()) ^^^^^^^ EOFError: EOF when reading a line
s442595754
p02390
u563181068
1504947192
Python
Python3
py
Runtime Error
0
0
139
a=input() s=int(a) if a<86400 and a>=0: h=int(s/3600) m=int((s-h*3600)/60) s=s-h*3600-m*60 print(h,m,s) else: exit()
Traceback (most recent call last): File "/tmp/tmpvp1lkull/tmpbe9qwwfh.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s505362283
p02390
u563181068
1504948599
Python
Python3
py
Runtime Error
0
0
159
a=input() s=int(a) if s<86400 and s>=0: h=int(s/3600) m=int((s-h*3600)/60) s=s-h*3600-m*60 print("{0}:{1}:{2}".format(h,m,s)) else: exit(
File "/tmp/tmpti35xu3u/tmp3zkjqjis.py", line 11 exit( ^ SyntaxError: '(' was never closed
s098539124
p02390
u362494298
1505050867
Python
Python3
py
Runtime Error
0
0
220
S = int(input()) if S >= 3600: h = S / 3600 m = S % 3600 / 60 s = m % 60 / 60 else if S >= 60: h = 0 m = S / 60 s = m % 60 / 60 else h = 0 m = 0 s = S
File "/tmp/tmpj64budb8/tmplr2exmjd.py", line 8 else ^ SyntaxError: expected ':'
s064508474
p02390
u362494298
1505051352
Python
Python3
py
Runtime Error
0
0
80
S = int(input()) h = S//3600 m = S%3600//60 s = S%3600%60 print(h ':' m ':' s)
File "/tmp/tmpu9imfi8k/tmp45r_bdk0.py", line 7 print(h ':' m ':' s) ^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s336352739
p02390
u088372268
1505482739
Python
Python3
py
Runtime Error
0
0
89
t = input() h = t // 3600 m = (t % 3600) // 60 s = t-3600*h-60*m print(h, ":", m, ":", s)
Traceback (most recent call last): File "/tmp/tmp8jpaf0gg/tmp_q156c60.py", line 1, in <module> t = input() ^^^^^^^ EOFError: EOF when reading a line
s089551969
p02390
u088372268
1505484455
Python
Python3
py
Runtime Error
0
0
112
S = int(input()) h = int(S / 3600) m = int((S % 3600) / 60) s = S-3600*h-60*m print(str(h)+":"+str(m)+":"str(s))
File "/tmp/tmp44o7obo9/tmpq3_qp77s.py", line 5 print(str(h)+":"+str(m)+":"str(s)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s549096256
p02390
u505411588
1507207334
Python
Python3
py
Runtime Error
0
0
98
S = int(input()) h = str(S//3600) M = S%3600 m = str(M//60) s = str(M%60) print(h+":"0+m+":"+s)
File "/tmp/tmp0wm1hydr/tmpnn_h7vq8.py", line 9 print(h+":"0+m+":"+s) ^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s162126616
p02390
u825994660
1507519501
Python
Python3
py
Runtime Error
0
0
76
S = input() print(str(S//3600) + ":" + str(S%3600//60) + ":" str(S%3600%60))
File "/tmp/tmpk8oki_72/tmpn7ap6rc2.py", line 2 print(str(S//3600) + ":" + str(S%3600//60) + ":" str(S%3600%60)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s976840181
p02390
u824030785
1508250332
Python
Python3
py
Runtime Error
0
0
75
S = int(input()) h = S / 3600 m = S / 60 s = S % 60 print(h, m, s, sep = :)
File "/tmp/tmpl7fmx04c/tmp8g3_t2a7.py", line 5 print(h, m, s, sep = :) ^ SyntaxError: invalid syntax
s797111929
p02390
u626266743
1508292325
Python
Python3
py
Runtime Error
0
0
105
S = int(input()) h = S / 3600 m = (S - h * 3600) / 60 s = S - h * 3600 - s * 60 print(h, m, s, sep = ':')
Traceback (most recent call last): File "/tmp/tmpjtqb4t4a/tmp6uc1brhv.py", line 1, in <module> S = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s423202381
p02390
u876635199
1508490894
Python
Python3
py
Runtime Error
0
0
59
S = int(input()) h = 60*60*s m = 60*s s = S print (h:,m:,s)
File "/tmp/tmpt5yvqb8b/tmpiemcfql6.py", line 5 print (h:,m:,s) ^ SyntaxError: invalid syntax
s018067280
p02390
u876635199
1508490959
Python
Python3
py
Runtime Error
0
0
59
S = int(input()) h = s%60%60 m = s%60 s = S print (h:,m:,s)
File "/tmp/tmpqjn93d4q/tmp7ubj3d_4.py", line 5 print (h:,m:,s) ^ SyntaxError: invalid syntax
s523445975
p02390
u876635199
1508491109
Python
Python3
py
Runtime Error
0
0
56
S = int(input()) s = S m = s%60 h = m%60 print (h:,m:,s)
File "/tmp/tmp5wvel8l3/tmpy_c6glrx.py", line 5 print (h:,m:,s) ^ SyntaxError: invalid syntax
s853551543
p02390
u876635199
1508491479
Python
Python3
py
Runtime Error
0
0
102
S = int(input()) h = int(S/3600) S = S%3600 m = int(S/60) s = S%60 print (str(h)+":"+str(m)+":"str(s))
File "/tmp/tmp6fnheyr7/tmp0bzhyzcu.py", line 6 print (str(h)+":"+str(m)+":"str(s)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s226350860
p02390
u876635199
1508491498
Python
Python3
py
Runtime Error
0
0
101
S = int(input()) h = int(S/3600) S = S%3600 m = int(S/60) s = S%60 print(str(h)+":"+str(m)+":"str(s))
File "/tmp/tmpxgwk6cs4/tmpj8dj41ic.py", line 6 print(str(h)+":"+str(m)+":"str(s)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s547720360
p02390
u008204061
1508960363
Python
Python3
py
Runtime Error
0
0
164
import sys t = input() h = 0 m = 0 s = 0 while t >= 3600: t -= 3600 h += 1 while t >= 60 t -= 60 m += 1 s = t print("{0}:{1}:{2}".format(h,m,s))
File "/tmp/tmppsteiuu2/tmpzgff9nb9.py", line 11 while t >= 60 ^ SyntaxError: expected ':'
s191033866
p02390
u008204061
1508960419
Python
Python3
py
Runtime Error
0
0
194
import sys ?? t = int(input()) h = 0 m = 0 s = 0 while t >= 3600: ????????t -= 3600 ????????h += 1 ?? while t >= 60: ????????t -= 60 ????????m += 1 ?? s = t ?? print("{0}:{1}:{2}".format(h,m,s))
File "/tmp/tmpobr_6mhh/tmp2glryw35.py", line 2 ?? ^ SyntaxError: invalid syntax
s327328884
p02390
u022665025
1509368770
Python
Python
py
Runtime Error
0
0
110
second = input() h = second // 3600 m = second % 3600 // 60 s = second % 60 print("%d : %d : %d " (h, m, s) )
/tmp/tmpq8d2qikd/tmpmrugc_2a.py:6: SyntaxWarning: 'str' object is not callable; perhaps you missed a comma? print("%d : %d : %d " (h, m, s) ) Traceback (most recent call last): File "/tmp/tmpq8d2qikd/tmpmrugc_2a.py", line 1, in <module> second = input() ^^^^^^^ EOFError: EOF when reading a line
s660801065
p02390
u747709646
1510270465
Python
Python3
py
Runtime Error
0
0
99
S = input() s = S % 60 m = int(S / 60) % 60 h = int(int(S / 60) / 60) print('%d:%d:%d' % (h,m,s))
Traceback (most recent call last): File "/tmp/tmphk8bnxwg/tmpab9h2cfa.py", line 1, in <module> S = input() ^^^^^^^ EOFError: EOF when reading a line
s438475625
p02390
u553796841
1510305228
Python
Python3
py
Runtime Error
0
0
82
a=input() h=a/3600 m=(a-(h*3600))/60 s=a-(h*3600)-(m*60) print '%d:%d:%d' %(h,m,s)
File "/tmp/tmp7037loun/tmp77x1j52s.py", line 5 print '%d:%d:%d' %(h,m,s) ^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s298470013
p02390
u725391514
1510316293
Python
Python3
py
Runtime Error
0
0
60
S=int(input()) h=S//3600 m=(S%3600)//60 s=m%60 print(h:m:s)
File "/tmp/tmpkhpx5p7j/tmpkammdlmf.py", line 6 print(h:m:s) ^ SyntaxError: invalid syntax
s606626123
p02390
u422299972
1510324450
Python
Python3
py
Runtime Error
0
0
111
n = int(input()) h = n / 3600 #??? n %= 3600 m = n /60 #??? n %= 60 s = n #?§? print(h + ":" + m + ":" + s)
Traceback (most recent call last): File "/tmp/tmpxxefeta_/tmprw0uay8i.py", line 1, in <module> n = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s351073869
p02390
u422299972
1510324831
Python
Python3
py
Runtime Error
0
0
106
n = input() h = n / 3600 #??? n %= 3600 m = n /60 #??? n %= 60 s = n #?§? print(h + ":" + m + ":" + s)
Traceback (most recent call last): File "/tmp/tmpvltk5r4c/tmp13sf53ti.py", line 1, in <module> n = input() ^^^^^^^ EOFError: EOF when reading a line
s873741631
p02390
u187646742
1510495348
Python
Python3
py
Runtime Error
0
0
124
a = int(input()) h = int(a / 3600) m = int(a - h * 3600) / 60 s = int(a - (h * 3600) - (m * 60)) print("%s:%s:%s % (h, m, s)
File "/tmp/tmpyzhhks1m/tmptv_ikb45.py", line 5 print("%s:%s:%s % (h, m, s) ^ SyntaxError: unterminated string literal (detected at line 5)
s135919638
p02390
u187646742
1510495412
Python
Python3
py
Runtime Error
0
0
126
a = int(input()) h = int(a / 3600) m = int((a - h * 3600) / 60) s = int(a - (h * 3600) - (m * 60)) print("%s:%s:%s % (h, m, s)
File "/tmp/tmpb6036klu/tmpiu6fscun.py", line 5 print("%s:%s:%s % (h, m, s) ^ SyntaxError: unterminated string literal (detected at line 5)
s236633880
p02390
u187646742
1510495453
Python
Python3
py
Runtime Error
0
0
125
a = int(input()) h = int(a / 3600) m = int(a - h * 3600) / 60 s = int(a - (h * 3600) - (m * 60)) print("%s:%s:%s % (h, m, s))
File "/tmp/tmpzl_5rofu/tmpnowdqf31.py", line 5 print("%s:%s:%s % (h, m, s)) ^ SyntaxError: unterminated string literal (detected at line 5)
s043122407
p02390
u889593139
1512101360
Python
Python3
py
Runtime Error
0
0
165
sec_time = int(input()) hour = sec_time // 3600 minutes = sec_time % 3600 // 60 seconds = sec_time % 3600 % 60 time = ':'.join(hour, minutes, seconds) print(time)
Traceback (most recent call last): File "/tmp/tmpy1q96vyn/tmp3qecs_av.py", line 1, in <module> sec_time = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s251109455
p02390
u889593139
1512101362
Python
Python3
py
Runtime Error
0
0
165
sec_time = int(input()) hour = sec_time // 3600 minutes = sec_time % 3600 // 60 seconds = sec_time % 3600 % 60 time = ':'.join(hour, minutes, seconds) print(time)
Traceback (most recent call last): File "/tmp/tmpxww08qyb/tmpga6edycu.py", line 1, in <module> sec_time = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s448539267
p02390
u095097138
1512721247
Python
Python3
py
Runtime Error
0
0
258
import argparse parser = argparse.ArgumentParser(description='Process some integers.') parser.add_argument('n', type=int, action='store') args = parser.parse_args() h = args.n / 3600 n = args.n % 3600 m = n / 60 s = n % 60 print('{}:{}:{}'.format(h,m,s))
usage: tmpngffkgq7.py [-h] n tmpngffkgq7.py: error: the following arguments are required: n
s851616307
p02390
u095097138
1512721357
Python
Python3
py
Runtime Error
0
0
273
import argparse parser = argparse.ArgumentParser(description='Process some integers.') parser.add_argument('n', type=int, action='store') args = parser.parse_args() h = args.n / 3600 n = args.n % 3600 m = n / 60 s = n % 60 print('{0:02d}:{0:02d}:{0:02d}'.format(h,m,s))
usage: tmps5vpt66y.py [-h] n tmps5vpt66y.py: error: the following arguments are required: n
s792946141
p02390
u095097138
1512721461
Python
Python
py
Runtime Error
0
0
273
import argparse parser = argparse.ArgumentParser(description='Process some integers.') parser.add_argument('n', type=int, action='store') args = parser.parse_args() h = args.n / 3600 n = args.n % 3600 m = n / 60 s = n % 60 print('{0:02d}:{0:02d}:{0:02d}'.format(h,m,s))
usage: tmp61gbufem.py [-h] n tmp61gbufem.py: error: the following arguments are required: n
s094686697
p02390
u095097138
1512721563
Python
Python3
py
Runtime Error
0
0
283
import argparse parser = argparse.ArgumentParser(description='Process some integers.') parser.add_argument('n', type=int, action='store') args = parser.parse_args() h = int(args.n / 3600) n = args.n % 3600 m = int(n / 60) s = n % 60 print('{0:02d}:{0:02d}:{0:02d}'.format(h,m,s))
usage: tmpo_0_lt6k.py [-h] n tmpo_0_lt6k.py: error: the following arguments are required: n
s843894297
p02390
u423320231
1513347920
Python
Python3
py
Runtime Error
0
0
92
a = input() x=int(a) h=int(x/3600) m=int((x-h*3600)/60) s=x-h*3600-m*60 print(h+":"+m+":"+s)
Traceback (most recent call last): File "/tmp/tmpxzl00r_x/tmpuhwna7c7.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s086562503
p02390
u830563109
1513444896
Python
Python3
py
Runtime Error
0
0
52
s = int(input()) m = s / 60 h = m / 60 print(h:m:s)
File "/tmp/tmplgmsda01/tmpru_ra3a9.py", line 5 print(h:m:s) ^ SyntaxError: invalid syntax
s976572794
p02390
u830563109
1513444924
Python
Python3
py
Runtime Error
0
0
57
s = int(input()) m = s / 60 h = m / 60 print(h:m:int(s))
File "/tmp/tmp8ak7hg0g/tmprbn3s844.py", line 5 print(h:m:int(s)) ^ SyntaxError: invalid syntax
s951124991
p02390
u830563109
1513444976
Python
Python3
py
Runtime Error
0
0
45
s = 40020 m = s / 60 h = m / 60 print(h:m:s)
File "/tmp/tmpsh_ryglj/tmp8oq5qxks.py", line 5 print(h:m:s) ^ SyntaxError: invalid syntax
s558684670
p02390
u830563109
1513448880
Python
Python3
py
Runtime Error
0
0
52
s = int(input()) m = s/60 h = m/60 print(h":"m":"s)
File "/tmp/tmpbvm4hbut/tmplja7njdy.py", line 5 print(h":"m":"s) ^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s044545213
p02390
u830563109
1513448900
Python
Python3
py
Runtime Error
0
0
57
s = int(input()) m = s/60 h = m/60 print(h":"m":"int(s))
File "/tmp/tmpa2cfpq7_/tmp5nf04_1d.py", line 5 print(h":"m":"int(s)) ^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s223329612
p02390
u830563109
1513448985
Python
Python3
py
Runtime Error
0
0
56
s = int(input()) m = s/60 h = m/60 print(h ":" m ":" s)
File "/tmp/tmpn72ivx3j/tmp4qztk3oc.py", line 5 print(h ":" m ":" s) ^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s809188481
p02390
u830563109
1513449031
Python
Python3
py
Runtime Error
0
0
57
s = int(input()) m = s/60 h = m/60 print(h ":" m ":" s):
File "/tmp/tmpc76h51lv/tmpx8351q3h.py", line 5 print(h ":" m ":" s): ^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s660300604
p02390
u830563109
1513449105
Python
Python3
py
Runtime Error
0
0
57
s = int(input()) m = s/60 h = m/60 print(h,m,s,sep=":"):
File "/tmp/tmpqy4769i0/tmp4m14admr.py", line 5 print(h,m,s,sep=":"): ^ SyntaxError: invalid syntax
s610092352
p02390
u613278035
1513462423
Python
Python3
py
Runtime Error
0
0
187
time = int(input()) h = time/3600 time%3600 m = time/60 s = time%60 print("%d:%d:time = int(input()) h = time/3600 time%=3600 m = time/60 s = time%60 print("%d:%d:%d"%(h,m,s))%d"%(h,m,s))
File "/tmp/tmpfx0dw_4i/tmp5sfsrjln.py", line 6 print("%d:%d:time = int(input()) ^ SyntaxError: unterminated string literal (detected at line 6)
s701887414
p02390
u301900896
1513825863
Python
Python3
py
Runtime Error
0
0
185
using namespace std; int main() { int s; cin >> s; int h = s / 3600; s -= h * 3600; int m = s / 60; s -= m * 60; cout << h << ":" << m << ":" << s << endl; return 0; }
File "/tmp/tmpe7qgu1xy/tmp1qnsl8uj.py", line 1 using namespace std; ^^^^^^^^^ SyntaxError: invalid syntax
s619421152
p02390
u801823223
1514383879
Python
Python3
py
Runtime Error
0
0
122
spam = input() s = spam%60 spam -= s m = (spam / 60) % 60 spam -= 60 * m h= spam / 3600 ham = ':'.join(h, m, s) print(ham)
Traceback (most recent call last): File "/tmp/tmp9tdf5k77/tmp8ze7dz20.py", line 1, in <module> spam = input() ^^^^^^^ EOFError: EOF when reading a line
s057104886
p02390
u165141947
1514588864
Python
Python
py
Runtime Error
0
0
117
S = int(raw_input()) h = int(S/3600) m = int((S - 3600 * h)/60) s = S - 3600 * h - 60 * m print h + ":" + m + ":" + s
File "/tmp/tmp2kcztxcl/tmptbz5o06h.py", line 5 print h + ":" + m + ":" + s ^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s462105052
p02390
u841567836
1515047328
Python
Python3
py
Runtime Error
0
0
118
S = input() S = int(S)    h = S//3600 S = S - h * 3600 m = S // 60 s = S - m * 60    print("%d:%d:%d" %(h, m, s))
File "/tmp/tmpp6uu5hjb/tmpwhklj7vh.py", line 3    ^ SyntaxError: invalid non-printable character U+00A0
s242019323
p02390
u841567836
1515047442
Python
Python3
py
Runtime Error
0
0
99
S = input() h = S//3600 S = S - h * 3600 m = S // 60 s = S - m * 60 print("%d:%d:%d" %(h,m,s))
Traceback (most recent call last): File "/tmp/tmppp6if00b/tmpqe0kux19.py", line 1, in <module> S = input() ^^^^^^^ EOFError: EOF when reading a line
s372687679
p02390
u841567836
1515047520
Python
Python3
py
Runtime Error
0
0
99
S = input() h = S//3600 S = S - h * 3600 m = S // 60 s = S - m * 60 print("%d:%d:%d" %(h,m,s))
Traceback (most recent call last): File "/tmp/tmpf3t5vwqh/tmped0l_s88.py", line 1, in <module> S = input() ^^^^^^^ EOFError: EOF when reading a line
s587887650
p02390
u503501082
1515591126
Python
Python3
py
Runtime Error
0
0
103
int_input = int(input()) sys.stdout.write(int_input//(60*60),":",(int_input//60)%60,":",int_input%60)
Traceback (most recent call last): File "/tmp/tmpfkfd6xqa/tmpptlctn1w.py", line 2, in <module> int_input = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s236063156
p02390
u503501082
1515591134
Python
Python3
py
Runtime Error
0
0
113
import sys int_input = int(input()) sys.stdout.write(int_input//(60*60),":",(int_input//60)%60,":",int_input%60)
Traceback (most recent call last): File "/tmp/tmptmm3h4tl/tmpxej0s746.py", line 2, in <module> int_input = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s411168127
p02390
u179070318
1515910923
Python
Python3
py
Runtime Error
0
0
69
S = int(input()) h = S//3600 m = (S%3600)//60 s = S%60 print(h:m:s)
File "/tmp/tmp_6tsvr_d/tmpkvfg7c98.py", line 5 print(h:m:s) ^ SyntaxError: invalid syntax
s320807078
p02390
u299257375
1516004898
Python
Python3
py
Runtime Error
0
0
124
sho = int(input()) // 60 amari = int(input()) % 60 h = sho // 60 m = sho % 60 s = amari print("{}:{}:{}".format(h, m, s))
Traceback (most recent call last): File "/tmp/tmpt1vkk4f3/tmps69_o_wx.py", line 1, in <module> sho = int(input()) // 60 ^^^^^^^ EOFError: EOF when reading a line
s862375429
p02390
u770698847
1516109587
Python
Python
py
Runtime Error
0
0
191
from dateutil.relativedelta import relativedelta x = int(raw_input()) y = relativedelta(seconds=x) x = "{0.hours:02}:{0.minutes:02}:{0.seconds:02}".format(relativedelta(seconds=x)) print(x)
Traceback (most recent call last): File "/tmp/tmp8qfr6mdu/tmp2naf0c75.py", line 3, in <module> x = int(raw_input()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s193300631
p02390
u770698847
1516109612
Python
Python
py
Runtime Error
0
0
246
from dateutil.relativedelta import relativedelta x = int(raw_input()) y = relativedelta(seconds=x) x = "{0.hours:02}:{0.minutes:02}:{0.seconds:02}".format(relativedelta(seconds=x))#02は二桁になる書式設定、最初の0は引数 print(x)
Traceback (most recent call last): File "/tmp/tmpvvfxkytm/tmpyopsz070.py", line 3, in <module> x = int(raw_input()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s900464654
p02390
u770698847
1516109715
Python
Python
py
Runtime Error
0
0
246
from dateutil.relativedelta import relativedelta x = int(raw_input()) y = relativedelta(seconds=x) x = "{0.hours:02}:{0.minutes:02}:{0.seconds:02}".format(relativedelta(seconds=x))#02は二桁になる書式設定、最初の0は引数 print(x)
Traceback (most recent call last): File "/tmp/tmpkzyot5el/tmpvi5ihvus.py", line 3, in <module> x = int(raw_input()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s642540278
p02390
u770698847
1516109954
Python
Python
py
Runtime Error
0
0
191
from dateutil.relativedelta import relativedelta x = int(raw_input()) y = relativedelta(seconds=x) x = "{0.hours:02}:{0.minutes:02}:{0.seconds:02}".format(relativedelta(seconds=x)) print(x)
Traceback (most recent call last): File "/tmp/tmpl32xgqtb/tmp3u82gek5.py", line 3, in <module> x = int(raw_input()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s702114749
p02390
u770698847
1516110003
Python
Python
py
Runtime Error
0
0
162
from dateutil.relativedelta import relativedelta x = int(raw_input()) x = "{0.hours:02}:{0.minutes:02}:{0.seconds:02}".format(relativedelta(seconds=x)) print(x)
Traceback (most recent call last): File "/tmp/tmpcm4x1e7n/tmppztz8l91.py", line 3, in <module> x = int(raw_input()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s706775897
p02390
u770698847
1516110088
Python
Python
py
Runtime Error
0
0
153
from dateutil.relativedelta import relativedelta x = int(raw_input()) x = "{0.hours}:{0.minutes}:{0.seconds}".format(relativedelta(seconds=x)) print(x)
Traceback (most recent call last): File "/tmp/tmp2qa_6jr5/tmp7gqewu96.py", line 3, in <module> x = int(raw_input()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s939752005
p02390
u770698847
1516110147
Python
Python
py
Runtime Error
0
0
103
x = int(raw_input()) x = "{0.hours}:{0.minutes}:{0.seconds}".format(relativedelta(seconds=x)) print(x)
Traceback (most recent call last): File "/tmp/tmp21l8wnc6/tmp8fbb5u88.py", line 1, in <module> x = int(raw_input()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s175016753
p02390
u536089081
1517522431
Python
Python3
py
Runtime Error
0
0
88
sec = int(input()) tmp = [sec // 3600, (sec // 60) % 60, sec % 60] print(':'.join(tmp))
Traceback (most recent call last): File "/tmp/tmp9jy23ok3/tmppadvd4_y.py", line 1, in <module> sec = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s395365424
p02390
u798565376
1517681469
Python
Python3
py
Runtime Error
0
0
121
input_s = int(input()) h = s / 3600 rest_s = s % 3600 m = rest_s / 60 s = rest_s % 60 print('{}:{}:{}'.format(h, m, s))
Traceback (most recent call last): File "/tmp/tmp4e38klg5/tmp0f4fhwpi.py", line 1, in <module> input_s = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s981090839
p02390
u602702913
1518082399
Python
Python3
py
Runtime Error
0
0
79
S=input() h=S//3600 m=(S%3600)//60 s=S-((h*3600)+(m*60)) print(h,':',m,':',s)
Traceback (most recent call last): File "/tmp/tmpz8l0uq_b/tmppw0y1o9x.py", line 1, in <module> S=input() ^^^^^^^ EOFError: EOF when reading a line
s058137856
p02390
u613627875
1518153131
Python
Python3
py
Runtime Error
0
0
62
s = int(input()) print(s/60/60 + ":" + s/60%60 + ":" + s%60)
Traceback (most recent call last): File "/tmp/tmpylu_ztk0/tmpjd4ro3cw.py", line 1, in <module> s = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s112375828
p02390
u373340964
1519097144
Python
Python3
py
Runtime Error
0
0
78
x = int(input()) print("{0}:{1}:{2}",format(x // 3600, x // 60 % 60, x % 60 )
File "/tmp/tmp6o8ebbuf/tmpbyc23iqq.py", line 2 print("{0}:{1}:{2}",format(x // 3600, x // 60 % 60, x % 60 ) ^ SyntaxError: '(' was never closed
s929669518
p02390
u373340964
1519097341
Python
Python3
py
Runtime Error
0
0
79
x = int(input()) print("{0}:{1}:{2}",format(x // 3600, x // 60 % 60, x % 60 ))
Traceback (most recent call last): File "/tmp/tmp1_kl6c4e/tmpspk0oz68.py", line 1, in <module> x = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s658193583
p02390
u299231628
1519293695
Python
Python3
py
Runtime Error
0
0
225
getime(n): h = m = s = 0 while n >= 3600: n -= 3600 h += 1 while n >= 60: n -= 60 m += 1 s = n return h, m, s h,m,s = getime(int(input())) print("{}:{}:{}".format(h,m,s))
File "/tmp/tmp71eznkqt/tmpxtu1jfr4.py", line 1 getime(n): IndentationError: unexpected indent
s636908776
p02390
u553148578
1519715839
Python
Python
py
Runtime Error
0
0
54
s=int(input()) print((s//3600) : (s//60%60) : (s%60))
File "/tmp/tmpj1ruflv0/tmpephp15rv.py", line 2 print((s//3600) : (s//60%60) : (s%60)) ^ SyntaxError: invalid syntax
s289964932
p02390
u553148578
1519715845
Python
Python3
py
Runtime Error
0
0
54
s=int(input()) print((s//3600) : (s//60%60) : (s%60))
File "/tmp/tmpnsxy_rlp/tmpdhv63vd5.py", line 2 print((s//3600) : (s//60%60) : (s%60)) ^ SyntaxError: invalid syntax
s160000321
p02390
u592769330
1520155891
Python
Python3
py
Runtime Error
0
0
69
s=input() m=s//60 h=m//60 s=s%60 print("{}:{}:{}".format(h,m,s))
Traceback (most recent call last): File "/tmp/tmpdjr3nhoc/tmpf_66dq_3.py", line 1, in <module> s=input() ^^^^^^^ EOFError: EOF when reading a line
s241764583
p02390
u592769330
1520156347
Python
Python3
py
Runtime Error
0
0
188
s = int(input()) m = s // 60 h = m // 60 s = s % 60 output="" if(h!=0): output+=int(h) output+=":" if(m!=0): output+=int(m) output+=":" if(s!=0): output+=int(s) print(output)
Traceback (most recent call last): File "/tmp/tmpvn_c1yr8/tmpcgchwbg_.py", line 1, in <module> s = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s150446576
p02390
u005739171
1520172746
Python
Python3
py
Runtime Error
0
0
82
S = input() h = S // 3600 m = (S % 3600) // 60 s = (S % 60) print(h,":",m,":",s)
Traceback (most recent call last): File "/tmp/tmpj0w0v8le/tmpf4q0vyu7.py", line 1, in <module> S = input() ^^^^^^^ EOFError: EOF when reading a line
s063462180
p02390
u005739171
1520172772
Python
Python3
py
Runtime Error
0
0
82
S = input() h = S // 3600 m = (S % 3600) // 60 s = (S % 60) print(h,":",m,":",s)
Traceback (most recent call last): File "/tmp/tmpch4v05dy/tmpuvi4xqj_.py", line 1, in <module> S = input() ^^^^^^^ EOFError: EOF when reading a line
s279693958
p02390
u017435045
1520679395
Python
Python3
py
Runtime Error
0
0
46
x=int(input()) print(x//3600,x//60%60,x%60,
File "/tmp/tmpn2jn14z8/tmp65r9glfl.py", line 2 x=int(input()) IndentationError: unexpected indent
s118586408
p02390
u017435045
1520679434
Python
Python3
py
Runtime Error
0
0
46
x=int(input()) print(x//3600,x//60%60,x%60)
File "/tmp/tmprgfc7sos/tmppknfj73z.py", line 2 x=int(input()) IndentationError: unexpected indent
s030088206
p02390
u017435045
1520679446
Python
Python3
py
Runtime Error
0
0
46
x=int(input()) print(x//3600,x//60%60,x%60)
File "/tmp/tmpacdzs7x9/tmplud9nyoj.py", line 2 x=int(input()) IndentationError: unexpected indent
s184968658
p02390
u017435045
1520679737
Python
Python3
py
Runtime Error
0
0
52
x=int(input()) print(x//3600,x/60%60,x/60.sep=" ")
File "/tmp/tmpkp7l7ker/tmpwi7au4iz.py", line 3 print(x//3600,x/60%60,x/60.sep=" ") ^ SyntaxError: invalid decimal literal
s241763146
p02390
u017435045
1520679751
Python
Python3
py
Runtime Error
0
0
54
x=int(input()) print(x//3600,x/60%60,x/60,sep={" "})
Traceback (most recent call last): File "/tmp/tmp8au5ozgw/tmp2stvpnd0.py", line 1, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s073048083
p02390
u177081782
1520746952
Python
Python3
py
Runtime Error
0
0
104
a = input() b = int(a / 3600) c = int((a % 3600)/60) d = (a%60) print(str(b) + ":" + str(c) + ":" + d)
Traceback (most recent call last): File "/tmp/tmpg9v3h7lq/tmpzvdw9ksj.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s903603627
p02390
u507758132
1521094826
Python
Python3
py
Runtime Error
0
0
111
S = int(input()) hour = S / (60*60) min = (S - hour * 60*60) / 60 sec = S % 3600 print (hour+":"+min+":"sec)
File "/tmp/tmpaojjvw86/tmpplyqvwsy.py", line 7 print (hour+":"+min+":"sec) ^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s221236207
p02390
u507758132
1521094984
Python
Python3
py
Runtime Error
0
0
104
S = int(input()) hour = S / (60*60) min = S % (60*60) / 60 sec = S % 60 print (hour+":"+min+":"sec)
File "/tmp/tmp_u2ziol9/tmp31iq_gzb.py", line 7 print (hour+":"+min+":"sec) ^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s433315560
p02390
u566311709
1521120179
Python
Python3
py
Runtime Error
0
0
105
n = int(input()) h = n // 3600 m = h // 60 s = n - 3600 * h - 60 * m print '{0}:{1}:{2}'.format(h, m, s)
File "/tmp/tmpnw4ix164/tmpghsohueo.py", line 5 print '{0}:{1}:{2}'.format(h, m, s) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s733220858
p02390
u921303861
1521384690
Python
Python3
py
Runtime Error
0
0
140
time = map(int, input().split()) h=0 h = int(time/(60*60)) m=int(time/60-h*60) s=int(time-h*60*60-m*60) print(str(h)+":"+str(m)+":"+str(s))
Traceback (most recent call last): File "/tmp/tmpc34d73qt/tmpdf9s2gz_.py", line 1, in <module> time = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s054990268
p02390
u921303861
1521384719
Python
Python3
py
Runtime Error
0
0
132
time = map(int, input()) h=0 h = int(time/(60*60)) m=int(time/60-h*60) s=int(time-h*60*60-m*60) print(str(h)+":"+str(m)+":"+str(s))
Traceback (most recent call last): File "/tmp/tmp221o92o_/tmp3cn30rjn.py", line 1, in <module> time = map(int, input()) ^^^^^^^ EOFError: EOF when reading a line
s727742050
p02390
u921303861
1521384783
Python
Python3
py
Runtime Error
0
0
140
time =input()) h=0 h = int(time/(60*60)) m=int(time/60-h*60) s=int(time-h*60*60-m*60) print(str(h)+":"+str(m)+":"+str(s))javascript:void(0)
File "/tmp/tmp3mbj8gh4/tmpode6wb7c.py", line 1 time =input()) ^ SyntaxError: unmatched ')'
s076761155
p02390
u921303861
1521384845
Python
Python3
py
Runtime Error
0
0
139
time =input() h=0 h = int(time/(60*60)) m=int(time/60-h*60) s=int(time-h*60*60-m*60) print(str(h)+":"+str(m)+":"+str(s))javascript:void(0)
File "/tmp/tmp0eeleqiz/tmp2lqh9oyj.py", line 6 print(str(h)+":"+str(m)+":"+str(s))javascript:void(0) ^^^^^^^^^^ SyntaxError: invalid syntax
s631016202
p02390
u921303861
1521384897
Python
Python3
py
Runtime Error
0
0
139
time =input() h=0 h = int(time/(60*60)) m=int(time/60-h*60) s=int(time-h*60*60-m*60) print(str(h)+":"+str(m)+":"+str(s))javascript:void(0)
File "/tmp/tmpt5jtysd6/tmp7_d7hedr.py", line 6 print(str(h)+":"+str(m)+":"+str(s))javascript:void(0) ^^^^^^^^^^ SyntaxError: invalid syntax
s442014916
p02390
u921303861
1521384941
Python
Python3
py
Runtime Error
0
0
117
time =input() h = int(time/(60*60)) m=int(time/60-h*60) s=int(time-h*60*60-m*60) print(str(h)+":"+str(m)+":"+str(s))
Traceback (most recent call last): File "/tmp/tmp5mqvex68/tmprdz8mj8u.py", line 1, in <module> time =input() ^^^^^^^ EOFError: EOF when reading a line