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
s532495887
p02390
u657076895
1521605495
Python
Python3
py
Runtime Error
0
0
196
for line in sys.stdin: time = int(line) sec = time % 60 rest = time / 60 min = rest % 60 hour = rest / 60 print(str(int(hour)) + ":" + str(int(min)) + ":" + str(int(sec)))
Traceback (most recent call last): File "/tmp/tmpyttqbaj1/tmp42jjx_0k.py", line 1, in <module> for line in sys.stdin: ^^^ NameError: name 'sys' is not defined
s204462001
p02390
u621084859
1522370912
Python
Python3
py
Runtime Error
0
0
59
s=int(input()) print(s //60*60 +":"+s //60%60+":"s//60%60)
File "/tmp/tmpolwwwa8l/tmp5u_ukxrf.py", line 2 print(s //60*60 +":"+s //60%60+":"s//60%60) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s129693573
p02390
u621084859
1522370948
Python
Python3
py
Runtime Error
0
0
59
s=int(input()) print(s //60*60 +":"+s //60%60+":"s//60%60)
File "/tmp/tmpv6s9p43d/tmpa04muxen.py", line 2 print(s //60*60 +":"+s //60%60+":"s//60%60) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s645669209
p02390
u621084859
1522371214
Python
Python3
py
Runtime Error
0
0
59
s=int(input()) print(s //60*60 +':'+s //60%60+':'s//60%60)
File "/tmp/tmpex5_282v/tmpuyrhdqiy.py", line 2 print(s //60*60 +':'+s //60%60+':'s//60%60) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s345963895
p02390
u621084859
1522371427
Python
Python3
py
Runtime Error
0
0
49
t=int(input()) print(t//3600+':'t//60%60':'t%60)
File "/tmp/tmpeqpiqx82/tmp1idvkb8o.py", line 2 print(t//3600+':'t//60%60':'t%60) ^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s119302707
p02390
u621084859
1522373125
Python
Python3
py
Runtime Error
0
0
56
s=int(input()) print(S//3600 +":"+ s//60%60 +":"+ s%60)
Traceback (most recent call last): File "/tmp/tmpya8tat5t/tmp_hvhji9w.py", line 1, in <module> s=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s899933764
p02390
u621084859
1522373185
Python
Python3
py
Runtime Error
0
0
56
s=int(input()) print(S//3600 +":"+ s//60%60 +":"+ s%60)
Traceback (most recent call last): File "/tmp/tmpijxre7oo/tmp4d7f57w5.py", line 1, in <module> s=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s404086244
p02390
u621084859
1522373287
Python
Python3
py
Runtime Error
0
0
56
s=int(input()) print(S//3600 +":"+ s//60%60 +":"+ s%60)
Traceback (most recent call last): File "/tmp/tmpqzfk_wf9/tmp6e2o1sqp.py", line 1, in <module> s=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s700920532
p02390
u621084859
1522373986
Python
Python3
py
Runtime Error
0
0
56
s=int(input()) print(S//3600 +":"+ s//60%60 +":"+ s%60)
Traceback (most recent call last): File "/tmp/tmpv_ymkf7y/tmpowg_ctp7.py", line 1, in <module> s=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s342838831
p02390
u621084859
1522374137
Python
Python3
py
Runtime Error
0
0
56
s=int(input()) print(S//3600 +":"+ s//60%60 +":"+ s%60)
Traceback (most recent call last): File "/tmp/tmpthk8bu17/tmppwwxos_r.py", line 1, in <module> s=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s445830479
p02390
u621084859
1522374290
Python
Python3
py
Runtime Error
0
0
56
s=int(input()) print(S//3600 +":"+ s//60%60 +":"+ s%60)
Traceback (most recent call last): File "/tmp/tmpxszf3t_p/tmponhbo5q6.py", line 1, in <module> s=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s828350056
p02390
u621084859
1522375901
Python
Python3
py
Runtime Error
0
0
57
s=int(input()) print(s //3600 +":"+ S//60%60 +":"+ S%60)
Traceback (most recent call last): File "/tmp/tmpzk7b5a51/tmpq0wuxkk2.py", line 1, in <module> s=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s700433855
p02390
u621084859
1522376190
Python
Python3
py
Runtime Error
0
0
64
t=int(input()) h=t//3600 m=t//60%60 s=t%60 print(h+":"+m+":"+s)
Traceback (most recent call last): File "/tmp/tmp5l52yv6j/tmp0c0qra_m.py", line 1, in <module> t=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s814837897
p02390
u621084859
1522376682
Python
Python3
py
Runtime Error
0
0
56
s=int(input()) print(S//3600 +":"+ s//60%60 +":"+ s%60)
Traceback (most recent call last): File "/tmp/tmpmcpc8lgv/tmppnjcd30m.py", line 1, in <module> s=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s548829245
p02390
u621084859
1522379197
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)
Traceback (most recent call last): File "/tmp/tmpg35a61yh/tmp45tgp_ld.py", line 1, in <module> S = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s888136247
p02390
u967961232
1523086998
Python
Python
py
Runtime Error
0
0
246
public class Main { public static void main(String[] args) { t = int(raw_input()) h = t / 3600 m = (t - 3600 * h) / 60 s = t % 60 print('{0}:{1}:{2}'.format(h, m, s)) sc.close(); } }
File "/tmp/tmpcm9icahl/tmpcq1pn8uh.py", line 1 public class Main { ^^^^^ SyntaxError: invalid syntax
s105038705
p02390
u244493040
1523183793
Python
Python3
py
Runtime Error
0
0
57
s=int(input()) print(s//(u=60)//u, s//u%u, s%u, sep=":")
File "/tmp/tmpziv5xdc2/tmpukvghzpg.py", line 2 print(s//(u=60)//u, s//u%u, s%u, sep=":") ^^^^ SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
s831700347
p02390
u781194524
1523334915
Python
Python
py
Runtime Error
0
0
59
x = int(input()) print(S//3600,(S%3600)//60,S//60,sep=':')
Traceback (most recent call last): File "/tmp/tmph0l2h3bg/tmp_n8vt_nw.py", line 1, in <module> x = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s450465833
p02390
u359372421
1523351260
Python
Python3
py
Runtime Error
0
0
86
x = input() s = x % 60 x //= 60 m = x % 60 x //= 60 print("{}:{}:{}".format(x, m, s))
Traceback (most recent call last): File "/tmp/tmpa_bhel2p/tmprzuffivy.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s727268525
p02390
u843169619
1523435713
Python
Python3
py
Runtime Error
0
0
146
line = input().split() a = int(line[0]) b = int(line[1]) if a == b: print('a == b') elif a > b: print('a > b') else: print('a < b')
Traceback (most recent call last): File "/tmp/tmpgep1fv8y/tmp04twktep.py", line 1, in <module> line = input().split() ^^^^^^^ EOFError: EOF when reading a line
s112416412
p02390
u843169619
1523435875
Python
Python3
py
Runtime Error
0
0
146
line = input().split() a = int(line[0]) b = int(line[1]) if a == b: print('a == b') elif a > b: print('a > b') else: print('a < b')
Traceback (most recent call last): File "/tmp/tmpj_b4yiql/tmportouegs.py", line 1, in <module> line = input().split() ^^^^^^^ EOFError: EOF when reading a line
s543623087
p02390
u843169619
1523436094
Python
Python3
py
Runtime Error
0
0
138
x = input() a = x.split(' ')[0] b = x.split(' ')[1] if a > b: print('a < b') elif a < b: print('a > b') else: print('a == b')
Traceback (most recent call last): File "/tmp/tmpkoazx4yo/tmpmdhihn_3.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s682355468
p02390
u843169619
1523436112
Python
Python3
py
Runtime Error
0
0
172
x = input() a = x.split(' ')[0] b = x.split(' ')[1] if a > b: print('a > b') elif a < b: print('a < b') else: print('a == b')
File "/tmp/tmpzqm85idh/tmp9x0slje5.py", line 1 x = input() IndentationError: unexpected indent
s252337782
p02390
u843169619
1523436128
Python
Python3
py
Runtime Error
0
0
202
if __name__ == '__main__': x = input() a = x.split(' ')[0] b = x.split(' ')[1] if a > b: print('a > b') elif a < b: print('a < b') else: print('a == b')
Traceback (most recent call last): File "/tmp/tmpvv3t1zi8/tmpb277tev0.py", line 2, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s437832683
p02390
u843169619
1523436145
Python
Python3
py
Runtime Error
0
0
229
# -*- encoding: utf-8 -*- if __name__ == '__main__': x = input() a = x.split(' ')[0] b = x.split(' ')[1] if a > b: print('a > b') elif a < b: print('a < b') else: print('a == b')
Traceback (most recent call last): File "/tmp/tmpx3ll3tpw/tmpzshnnnph.py", line 4, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s318743795
p02390
u843169619
1523436152
Python
Python
py
Runtime Error
0
0
229
# -*- encoding: utf-8 -*- if __name__ == '__main__': x = input() a = x.split(' ')[0] b = x.split(' ')[1] if a > b: print('a > b') elif a < b: print('a < b') else: print('a == b')
Traceback (most recent call last): File "/tmp/tmpil56gbrj/tmp_7cuhdeq.py", line 4, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s667081790
p02390
u843169619
1523439117
Python
Python
py
Runtime Error
0
0
175
x = input() a = x.split(' ')[0] b = x.split(' ')[1] if a > b: print('a > b') elif a < b: print('a < b') else: print('a == b')
File "/tmp/tmp8ito8u84/tmpfe8_wcvf.py", line 1 x = input() IndentationError: unexpected indent
s777691235
p02390
u843169619
1523439133
Python
Python
py
Runtime Error
0
0
169
x = input() a = x.split()[0] b = x.split()[1] if a > b: print('a > b') elif a < b: print('a < b') else: print('a == b')
File "/tmp/tmp73097pbg/tmph3f36jw8.py", line 1 x = input() IndentationError: unexpected indent
s429834128
p02390
u372207695
1523514607
Python
Python3
py
Runtime Error
0
0
139
i = int(iput()) if i/3600 != 0: h = i/3600 a = a - 3600 * h if i/60 != 0: m = i/3600 a = a - 60 * m print(h,":",m,":",a)
Traceback (most recent call last): File "/tmp/tmpsunfkcnb/tmpegwpauj3.py", line 1, in <module> i = int(iput()) ^^^^ NameError: name 'iput' is not defined. Did you mean: 'input'?
s475248051
p02390
u372207695
1523514622
Python
Python3
py
Runtime Error
0
0
140
i = int(input()) if i/3600 != 0: h = i/3600 a = a - 3600 * h if i/60 != 0: m = i/3600 a = a - 60 * m print(h,":",m,":",a)
Traceback (most recent call last): File "/tmp/tmp2k67o5ck/tmpo0kcic5n.py", line 1, in <module> i = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s902997187
p02390
u372207695
1523514645
Python
Python3
py
Runtime Error
0
0
140
i = int(input()) if i/3600 != 0: h = i/3600 i = i - 3600 * h if i/60 != 0: m = i/3600 i = i - 60 * m print(h,":",m,":",a)
Traceback (most recent call last): File "/tmp/tmpclrwt00a/tmpln9vjq5w.py", line 1, in <module> i = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s269465178
p02390
u372207695
1523514667
Python
Python3
py
Runtime Error
0
0
153
i = int(input()) h = 0 m = 0 if i/3600 != 0: h = i/3600 i = i - 3600 * h if i/60 != 0: m = i/3600 i = i - 60 * m print(h,":",m,":",a)
Traceback (most recent call last): File "/tmp/tmpr13tapb1/tmpfqq_gn7w.py", line 1, in <module> i = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s946757157
p02390
u372207695
1523514984
Python
Python3
py
Runtime Error
0
0
178
i = int(input()) h = 0 m = 0 if i/3600 > 1: h = int(i/3600) i = i - 3600 * h if i/60 > 1: m = int(i/60) i = i - 60 * m s = h + ":" + m + ":" + i print(s)
Traceback (most recent call last): File "/tmp/tmpg3ttf13j/tmpugr828dw.py", line 1, in <module> i = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s217069508
p02390
u064313887
1523524714
Python
Python3
py
Runtime Error
0
0
96
S = double(input()) h = S / 3600 m = (S % 3600) / 60 s = (S % 3600) % 60 print(h,":",m,":",s)
Traceback (most recent call last): File "/tmp/tmp8j502g_y/tmp2un_g701.py", line 1, in <module> S = double(input()) ^^^^^^ NameError: name 'double' is not defined
s502589600
p02390
u064313887
1523525700
Python
Python3
py
Runtime Error
0
0
85
x = int(input()) h = x // 3600 m = x % 3600 // 60 s = x % 60 print(h,m,s,sep=':")
File "/tmp/tmpf4fh9yxm/tmphj2g2t5k.py", line 7 print(h,m,s,sep=':") ^ SyntaxError: unterminated string literal (detected at line 7)
s188762049
p02390
u064313887
1523525714
Python
Python3
py
Runtime Error
0
0
85
x = int(input()) h = x // 3600 m = x % 3600 // 60 s = x % 60 print(h,m,s,sep=':")
File "/tmp/tmpcuc_sj_d/tmpxg14tq34.py", line 7 print(h,m,s,sep=':") ^ SyntaxError: unterminated string literal (detected at line 7)
s020307344
p02390
u165447384
1523805363
Python
Python3
py
Runtime Error
0
0
60
x = int( input() ) print(x//3600+":"+(x%3600)//60+":"+x%60)
Traceback (most recent call last): File "/tmp/tmp7v4mmi3i/tmpq681ps5z.py", line 1, in <module> x = int( input() ) ^^^^^^^ EOFError: EOF when reading a line
s887306093
p02390
u165447384
1523886028
Python
Python3
py
Runtime Error
0
0
58
x = int(input()) print(x//3600+":"+(x//60)%60+":"+(x%60))
Traceback (most recent call last): File "/tmp/tmpj20311ml/tmph149ckpx.py", line 1, in <module> x = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s360897215
p02390
u592529978
1523948096
Python
Python
py
Runtime Error
0
0
42
s=input() print (s/3600 : s/60%60 : s%60)
File "/tmp/tmpww5lan3v/tmpfihkhto_.py", line 2 print (s/3600 : s/60%60 : s%60) ^ SyntaxError: invalid syntax
s096062981
p02390
u074747865
1524121486
Python
Python3
py
Runtime Error
0
0
76
S = int(input()) h = S//3600 s = S%60 m = (S - 3600*h - s)//60 print(h:m:s)
File "/tmp/tmpspkwebd2/tmpfg6x89w3.py", line 5 print(h:m:s) ^ SyntaxError: invalid syntax
s807735493
p02390
u074747865
1524121781
Python
Python3
py
Runtime Error
0
0
56
S = int(input()) print(S//3600, S//60%60, S%60, sep":")
File "/tmp/tmp2k1flhgk/tmp5p3q765n.py", line 2 print(S//3600, S//60%60, S%60, sep":") ^^^ SyntaxError: invalid syntax
s590683847
p02390
u485986915
1524215743
Python
Python3
py
Runtime Error
0
0
79
s =int(input()) int h = s/3600 int m = (s/60)%60 int sec = s%60 print(h:m:sec)
File "/tmp/tmpzv7zuy6i/tmp85pxikul.py", line 2 int h = s/3600 ^ SyntaxError: invalid syntax
s667653409
p02390
u485986915
1524215882
Python
Python3
py
Runtime Error
0
0
81
s =int(input()) int h = s/3600 int m = (s/60)%60 int sec = s%60 print("h:m:sec")
File "/tmp/tmpwruavfdw/tmp25rg7gi7.py", line 2 int h = s/3600 ^ SyntaxError: invalid syntax
s202243147
p02390
u836133197
1524487191
Python
Python3
py
Runtime Error
0
0
98
s = input() a, b = divmod(s, 60) h, m = divmod(a, 60) print("{02d}:{02d}:{02d}".format(h, m, b))
Traceback (most recent call last): File "/tmp/tmph4isbsd5/tmpktf8tinv.py", line 1, in <module> s = input() ^^^^^^^ EOFError: EOF when reading a line
s217235734
p02390
u836133197
1524838464
Python
Python3
py
Runtime Error
0
0
192
#include <stdio.h> int main() { int s; scanf("%d", &s); int a = int(s / 60); int b = int(a / 60); int c = int(b / 60); printf("%d:%d:%d\n", a, b, c); return 0; }
File "/tmp/tmp4xpqo40n/tmptnakjlc1.py", line 3 int main() ^^^^ SyntaxError: invalid syntax
s693415043
p02390
u836133197
1524838556
Python
Python3
py
Runtime Error
0
0
231
#include <stdio.h> int main() { int s; scanf("%d", &s); int a = static_cast<int>(s / 60); int b = static_cast<int>(a / 60); int c = static_cast<int>(b / 60); printf("%d:%d:%d\n", a, b, c); return 0; }
File "/tmp/tmp1u2pu76_/tmpj0p468e_.py", line 3 int main() ^^^^ SyntaxError: invalid syntax
s883921006
p02390
u836133197
1524838810
Python
Python3
py
Runtime Error
0
0
202
#include <stdio.h> int main() { int s; scanf("%d", &s); double a = s / 3600; double b = a / 60; double c = b / 60; printf("%d:%d:%d\n", int(a), int(b), int(c)); return 0; }
File "/tmp/tmpgk4_hd1j/tmpt4aluc_y.py", line 3 int main() ^^^^ SyntaxError: invalid syntax
s162464894
p02390
u147527299
1525441904
Python
Python3
py
Runtime Error
0
0
53
S=int(input()) print(S//3600,S//60%60,S//60 ,sep":")
File "/tmp/tmpqa0x4zi5/tmpyrqr439b.py", line 2 print(S//3600,S//60%60,S//60 ,sep":") ^^^ SyntaxError: invalid syntax
s729749472
p02390
u067299340
1525927270
Python
Python3
py
Runtime Error
0
0
80
seconds = int(input()) print(":".join(seconds/60/24,seconds/60%24, seconds%60))
Traceback (most recent call last): File "/tmp/tmphqdbsg_p/tmp5g8j3b7u.py", line 1, in <module> seconds = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s344569349
p02390
u067299340
1525927315
Python
Python3
py
Runtime Error
0
0
82
seconds = int(input()) print(":".join([seconds/60/24,seconds/60%24, seconds%60]))
Traceback (most recent call last): File "/tmp/tmp6cgcpabm/tmp4ry0cjs0.py", line 1, in <module> seconds = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s558657447
p02390
u500257793
1525949558
Python
Python3
py
Runtime Error
0
0
52
x=input() print(x/3600,x%3600/60,x%3600%60,sep=":")
Traceback (most recent call last): File "/tmp/tmpatuq_uoq/tmpjhvfovtk.py", line 1, in <module> x=input() ^^^^^^^ EOFError: EOF when reading a line
s209587212
p02390
u500257793
1526730376
Python
Python3
py
Runtime Error
0
0
95
S=map(int,input()) h=(int)(S/3600) m=(int)(S%3600/60) s=(int)(S%3600%60) print(f"{h}:{m}:{s}")
Traceback (most recent call last): File "/tmp/tmpw7qn160l/tmpz1ygaole.py", line 1, in <module> S=map(int,input()) ^^^^^^^ EOFError: EOF when reading a line
s433936691
p02390
u500257793
1526730444
Python
Python3
py
Runtime Error
0
0
89
S=map(int,input()) h=(int)S/3600 m=(int)S%3600/60 s=(int)S%3600%60 print(f"{h}:{m}:{s}")
File "/tmp/tmp0ljh3sy2/tmpl170jes0.py", line 2 h=(int)S/3600 ^ SyntaxError: invalid syntax
s258428306
p02390
u237094818
1527359893
Python
Python
py
Runtime Error
0
0
123
# -*- coding:utf-8 X = input() H = X // 3600 M = (X - H*3600) // 60 S = (X - H*3600) % 60 print('%s:%d:%m' % (H,M,S))
Traceback (most recent call last): File "/tmp/tmp7ur_gnj7/tmppmvq2mhj.py", line 3, in <module> X = input() ^^^^^^^ EOFError: EOF when reading a line
s671660384
p02390
u884342371
1527406436
Python
Python3
py
Runtime Error
0
0
125
S = int(input()) h = int(a/3600) m = int( (S - h*3600)/60 ) s = int( (S - h*3600 - m*60)/60 ) print("%d:%d:%d", %(h, m, s))
File "/tmp/tmphcd0336j/tmp9f99wf5m.py", line 6 print("%d:%d:%d", %(h, m, s)) ^ SyntaxError: invalid syntax
s185187504
p02390
u884342371
1527406531
Python
Python3
py
Runtime Error
0
0
118
S = int(input()) h = int(a/3600) m = int( (S - h*3600)/60 ) s = int(S - h*3600 - m*60) print("%d:%d:%d", %(h, m, s))
File "/tmp/tmpyjeznj7j/tmpe49rcqvh.py", line 6 print("%d:%d:%d", %(h, m, s)) ^ SyntaxError: invalid syntax
s679871170
p02390
u884342371
1527406604
Python
Python3
py
Runtime Error
0
0
113
S = int(input()) h = int(a/3600) l = S - h*3600 m = int( l/60 ) s = int(l - m*60) print("%d:%d:%d", %(h, m, s))
File "/tmp/tmpp4lrg62n/tmp1zdopvgs.py", line 7 print("%d:%d:%d", %(h, m, s)) ^ SyntaxError: invalid syntax
s827505380
p02390
u884342371
1527406643
Python
Python3
py
Runtime Error
0
0
113
S = int(input()) h = int(S/3600) l = S - h*3600 m = int( l/60 ) s = int(l - m*60) print("%d:%d:%d", %(h, m, s))
File "/tmp/tmp_wivpkl4/tmplgrnyawk.py", line 7 print("%d:%d:%d", %(h, m, s)) ^ SyntaxError: invalid syntax
s830107300
p02390
u966110132
1527450216
Python
Python3
py
Runtime Error
0
0
98
a = input() h = int(a/3600) b = a - h*3600 m = int(b/60) c = b - m*60 print(h + ":"+ m + ":" + c)
Traceback (most recent call last): File "/tmp/tmp_5kmng7o/tmp9tdo8f7h.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s327971504
p02390
u966110132
1527450603
Python
Python3
py
Runtime Error
0
0
52
a = input() print(a//3600, a//60%60, x%60, sep=":")
Traceback (most recent call last): File "/tmp/tmpzjm_wzs1/tmpp2pb94ji.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s873254095
p02390
u726789377
1527516341
Python
Python3
py
Runtime Error
0
0
125
S = input() h = S / 3600 m = (S % 3600) / 60 s = (S % 3600) % 60) print(str(int(h)) + ':' + str(int(m)) + ':' + str(s))
File "/tmp/tmpfn2f4t0e/tmpra1llz03.py", line 1 S = input() IndentationError: unexpected indent
s572821297
p02390
u745214779
1527641276
Python
Python3
py
Runtime Error
0
0
52
s = input() m = s/60 h = m/60 print (h, :, m, :, s)
File "/tmp/tmp3fgs5xvl/tmp26i14l78.py", line 4 print (h, :, m, :, s) ^ SyntaxError: invalid syntax
s524963058
p02390
u745214779
1527642282
Python
Python3
py
Runtime Error
0
0
150
s = input() s = int(s) int h = 0 int m = 0 int ss = 0 while(s >= 3600){ s -= 3600; h++ } while(s >= 60){ s -= 60; m++ } ss = s; print (h, :, m, :, s)
File "/tmp/tmp3bo9ubw4/tmpbu6735gf.py", line 3 int h = 0 ^ SyntaxError: invalid syntax
s118147242
p02390
u745214779
1527642403
Python
Python3
py
Runtime Error
0
0
170
int main(){ int s; int h,m,g; scanf("%d",&in); h = s / 3600; s %= 3600; m = s / 60; s %= 60; g = s; printf("%d:%d:%d\n",h,m,g); }
File "/tmp/tmp548roa9_/tmpvw4nn676.py", line 1 int main(){ ^^^^ SyntaxError: invalid syntax
s411167648
p02390
u763301852
1527777990
Python
Python3
py
Runtime Error
0
0
89
t = input() h = t // 3600 m = (t % 3600) // 60 s = t % 60 print("%d:%d:%d" % (h, m, s))
Traceback (most recent call last): File "/tmp/tmph4xo3a0z/tmpg32tu3wb.py", line 1, in <module> t = input() ^^^^^^^ EOFError: EOF when reading a line
s711691986
p02390
u227344542
1528267961
Python
Python3
py
Runtime Error
0
0
107
S=int(input()) h = s//3600 m = (s-h*3600)//60 s = (S-(h*3600)-(m*60)) print (str(h)+":"+str(m)+":"+str(s))
Traceback (most recent call last): File "/tmp/tmpabviy68_/tmp3qwadufd.py", line 1, in <module> S=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s987354489
p02390
u227344542
1528268095
Python
Python3
py
Runtime Error
0
0
107
S=int(input()) h = s//3600 m = (s-h*3600)//60 s = (S-(h*3600)-(m*60)) print (str(h)+":"+str(m)+":"+str(s))
Traceback (most recent call last): File "/tmp/tmp0i_92767/tmpftweo_bo.py", line 1, in <module> S=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s972761811
p02390
u227344542
1528268369
Python
Python3
py
Runtime Error
0
0
92
S=int(input()) h = s//3600 m = (s-h*3600)//60 s = (S-(h*3600)-(m*60)) print (h,m,s,sep=":")
Traceback (most recent call last): File "/tmp/tmpi_sdrmqn/tmphdwwdfuc.py", line 1, in <module> S=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s604817800
p02390
u986523878
1529413119
Python
Python3
py
Runtime Error
0
0
120
sec=int(input()) h=inr(sec/3600) m=int((sec-(3600*h))/60) s=int(sec-(3600*h)-(60*m)) print("{0}:{1}:{2}".format(h,m,s))
Traceback (most recent call last): File "/tmp/tmpab0afr9i/tmprr8qogqf.py", line 1, in <module> sec=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s535984518
p02390
u987236471
1530465277
Python
Python3
py
Runtime Error
0
0
81
S = int(input()) h = S // 3600 m = S // 60 -S // 3600 s = S // 60 print(h:m:s)
File "/tmp/tmpyb9kwgxd/tmp6aszcno0.py", line 5 print(h:m:s) ^ SyntaxError: invalid syntax
s564019253
p02390
u987236471
1530465302
Python
Python3
py
Runtime Error
0
0
85
S = int(input()) h = S // 3600 m = S // 60 -S // 3600 s = S // 60 print(h":"m":"s)
File "/tmp/tmpppsnbhf6/tmphj6k1i1a.py", line 5 print(h":"m":"s) ^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s478357406
p02390
u987236471
1530465758
Python
Python3
py
Runtime Error
0
0
79
S = int(input()) h = S//3600 m = (S//60)-(S//3600) s = S//60 print(h,:,m,:,s)
File "/tmp/tmpifzm490y/tmp4d0qqqsx.py", line 5 print(h,:,m,:,s) ^ SyntaxError: invalid syntax
s583170591
p02390
u987236471
1530465780
Python
Python3
py
Runtime Error
0
0
79
S = int(input()) h = S//3600 m = (S//60)-(S//3600) s = S//60 print(h,:,m,:,s)
File "/tmp/tmp6mwruwfz/tmp1dtl_hix.py", line 5 print(h,:,m,:,s) ^ SyntaxError: invalid syntax
s836743633
p02390
u987236471
1530465834
Python
Python3
py
Runtime Error
0
0
81
S = int(input()) h = S//3600 m = (S//60)-(S//3600) s = S//60 print(h,:,m,:,s)
File "/tmp/tmpmwps7m5b/tmp8ofmmp_9.py", line 7 print(h,:,m,:,s) ^ SyntaxError: invalid syntax
s271645441
p02390
u987236471
1530466010
Python
Python3
py
Runtime Error
0
0
83
S = int(input()) h = S//3600 m = (S//60)-(S//3600) s = S//60 p = h:m:s print(p)
File "/tmp/tmpc5no47pl/tmp2483ehtq.py", line 6 p = h:m:s ^ SyntaxError: invalid syntax
s096400139
p02390
u987236471
1530466222
Python
Python3
py
Runtime Error
0
0
82
S = int(input()) h = S//3600 m = (S//60)-(S//3600) s = S//60 print(h':'m':'s)
File "/tmp/tmpyac2ios1/tmpnx89py43.py", line 6 print(h':'m':'s) ^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s213994693
p02390
u987236471
1530466230
Python
Python3
py
Runtime Error
0
0
81
S = int(input()) h = S//3600 m = (S//60)-(S//3600) s = S//60 print(h':'m':'s)
File "/tmp/tmp2yk8lc3o/tmp4jov3pbc.py", line 5 print(h':'m':'s) ^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s206272809
p02390
u987236471
1530466243
Python
Python3
py
Runtime Error
0
0
79
S = int(input()) h = S//3600 m = (S//60)-(S//3600) s = S//60 print(h':'m':'s)
File "/tmp/tmp4gvbw604/tmpol9znfjr.py", line 5 print(h':'m':'s) ^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s212042070
p02390
u987236471
1530466300
Python
Python3
py
Runtime Error
0
0
75
S = int(input()) h = S//3600 m = (S//60)-(S//3600) s = S//60 print(h:m:s)
File "/tmp/tmpwlnl303o/tmps7bief4h.py", line 5 print(h:m:s) ^ SyntaxError: invalid syntax
s843540040
p02390
u987236471
1530466376
Python
Python3
py
Runtime Error
0
0
98
S = int(input()) h = S//3600 m = (S//60)-(S//3600) a = str(h) b = str(m) c = str(s) print(a:b:c)
File "/tmp/tmplsibc0k0/tmpjy9tt2mq.py", line 7 print(a:b:c) ^ SyntaxError: invalid syntax
s847119023
p02390
u987236471
1530466386
Python
Python3
py
Runtime Error
0
0
100
S = int(input()) h = S//3600 m = (S//60)-(S//3600) a = str(h) b = str(m) c = str(s) print("a:b:c")
Traceback (most recent call last): File "/tmp/tmpq3hv6zz9/tmplcs60_5p.py", line 1, in <module> S = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s006577323
p02390
u987236471
1530466619
Python
Python3
py
Runtime Error
0
0
117
S = int(input()) h = S//3600 m = (S//60)-60*(S//3600) s = S//60 a = str(h) b = str(m) c = str(s) print("a":"b":"c")
File "/tmp/tmpiqibinzx/tmpn07sirlv.py", line 8 print("a":"b":"c") ^ SyntaxError: invalid syntax
s806303951
p02390
u987236471
1530466627
Python
Python
py
Runtime Error
0
0
117
S = int(input()) h = S//3600 m = (S//60)-60*(S//3600) s = S//60 a = str(h) b = str(m) c = str(s) print("a":"b":"c")
File "/tmp/tmpshw3ctyn/tmpm5sdv_tx.py", line 8 print("a":"b":"c") ^ SyntaxError: invalid syntax
s842455754
p02390
u987236471
1530466818
Python
Python3
py
Runtime Error
0
0
97
S = int(input()) h = S//3600 m = (S//60)-60*(S//3600) s = S//60 print('{}:{}:{}'.format(him,s))
Traceback (most recent call last): File "/tmp/tmp0z1d8m3j/tmpyl8w487g.py", line 1, in <module> S = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s589644815
p02390
u917722865
1530702311
Python
Python3
py
Runtime Error
0
0
153
second = input() second = (int)second h = second // 3600 m = (second % 3600) // 60 s = (second % 3600) % 60 print("{0:02}:{1:02}:{2:02}".format(h,m,s))
File "/tmp/tmpnjpjkoun/tmpy08m9zxp.py", line 3 second = (int)second ^^^^^^ SyntaxError: invalid syntax
s280808237
p02391
u138628845
1531278101
Python
Python3
py
Runtime Error
0
0
134
a = input().split() elif a[0] < a[1]: print('a < b') elif a[0] > a[1]: print('a > b') elif a[0] == a[1]: print('a == b')
File "/tmp/tmpw0dkstrm/tmpx969esox.py", line 2 elif a[0] < a[1]: ^^^^ SyntaxError: invalid syntax
s875306317
p02391
u260169299
1535143764
Python
Python3
py
Runtime Error
0
0
330
import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner input = new Scanner(System.in); int a = input.nextInt(); int b = input.nextInt(); String output = ""; if (a-b > 0) { output = "a > b"; } else if(a-b<0){ output = "a < b"; } else { output = "a == b"; } System.out.println(output); } }
File "/tmp/tmpd38fi46q/tmpw6ncmwcw.py", line 3 public class Main { ^^^^^ SyntaxError: invalid syntax
s291935661
p02391
u883600689
1535277512
Python
Python3
py
Runtime Error
0
0
110
a,b=[int(x) for x in input().split()] if a<b: print('a<b') elif a>b: print('a>b') elif a==b: print('a==b')
File "/tmp/tmp28wkutge/tmpsxw9vzn7.py", line 4 print('a<b') ^ IndentationError: expected an indented block after 'if' statement on line 3
s594227949
p02391
u883600689
1535278042
Python
Python3
py
Runtime Error
0
0
105
a,b=[int(x) for x in input().split()] if a<b: print('a<b') elif a>b: print('a>b') else: print('a==b')
File "/tmp/tmpr7c0mpbz/tmp3r1jk2t3.py", line 4 print('a<b') ^ IndentationError: expected an indented block after 'if' statement on line 3
s681293635
p02391
u580227385
1535447680
Python
Python3
py
Runtime Error
0
0
163
a, b = map(int, input().split()) if a > b: print(str(a) + " > " + str(b)) if a < b: print(str(a) + " < " + str(b)) if: print(str(a) + " == " + str(b))
File "/tmp/tmp7him5tiw/tmp2b3qjn38.py", line 6 if: ^ SyntaxError: invalid syntax
s080207549
p02391
u254148695
1540290339
Python
Python3
py
Runtime Error
0
0
137
a = int(input("a:")) b = int(input("b:")) if a == b: print("a == b") elif a > b: print("a > b") elif a < b: print("a < b")
Traceback (most recent call last): File "/tmp/tmpox00li0n/tmp18i0gu0f.py", line 1, in <module> a = int(input("a:")) ^^^^^^^^^^^ EOFError: EOF when reading a line
a:
s544135195
p02391
u254148695
1540290477
Python
Python
py
Runtime Error
0
0
137
a = int(input("a:")) b = int(input("b:")) if a == b: print("a == b") elif a > b: print("a > b") elif a < b: print("a < b")
Traceback (most recent call last): File "/tmp/tmpd4jkhuve/tmp_amdkjzw.py", line 1, in <module> a = int(input("a:")) ^^^^^^^^^^^ EOFError: EOF when reading a line
a:
s018223379
p02391
u184749404
1540384328
Python
Python3
py
Runtime Error
0
0
63
a,b =(int(i) for i in input.split()) if a>b: print("a > b")
Traceback (most recent call last): File "/tmp/tmpe6fka7ec/tmp8nk9omku.py", line 1, in <module> a,b =(int(i) for i in input.split()) ^^^^^^^^^^^ AttributeError: 'builtin_function_or_method' object has no attribute 'split'
s101756253
p02391
u184749404
1540384519
Python
Python3
py
Runtime Error
0
0
118
a,b =(int(i) for i in input.split()) if a > b: print("a > b") if a == b: print("a == b") if a > b: print("a > b")
Traceback (most recent call last): File "/tmp/tmpy09j5bhg/tmp_sinsuky.py", line 1, in <module> a,b =(int(i) for i in input.split()) ^^^^^^^^^^^ AttributeError: 'builtin_function_or_method' object has no attribute 'split'
s890802871
p02391
u184749404
1540384562
Python
Python3
py
Runtime Error
0
0
124
a,b =(int(i) for i in input.split()) if a > b: print("a > b") if a == b: print("a == b") if a > b: print("a > b") elif
File "/tmp/tmpy9a12i2u/tmp4bst0o1g.py", line 8 elif ^^^^ SyntaxError: invalid syntax
s267293240
p02391
u184749404
1540384606
Python
Python3
py
Runtime Error
0
0
123
a,b =(int(i) for i in input.split()) if a > b: print("a > b") elif a == b: print("a == b") elif a > b: print("a > b")
Traceback (most recent call last): File "/tmp/tmpq_ehqqak/tmpcujxmwyn.py", line 1, in <module> a,b =(int(i) for i in input.split()) ^^^^^^^^^^^ AttributeError: 'builtin_function_or_method' object has no attribute 'split'
s376410527
p02391
u184749404
1540384711
Python
Python3
py
Runtime Error
0
0
123
a,b =(int(i) for i in input.split()) if a > b: print("a > b") elif a == b: print("a == b") else a < b: print("a < b")
File "/tmp/tmp74fzcsyc/tmpb8k_nd3c.py", line 6 else a < b: ^ SyntaxError: expected ':'
s837490617
p02391
u184749404
1540384739
Python
Python3
py
Runtime Error
0
0
118
a,b =(int(i) for i in input.split()) if a > b: print("a > b") elif a == b: print("a == b") else , print("a < b")
File "/tmp/tmpvt3k6gsk/tmpx9_jp42t.py", line 6 else , ^ SyntaxError: expected ':'
s285856551
p02391
u184749404
1540384748
Python
Python3
py
Runtime Error
0
0
118
a,b =(int(i) for i in input.split()) if a > b: print("a > b") elif a == b: print("a == b") else : print("a < b")
Traceback (most recent call last): File "/tmp/tmpvuhnons1/tmpfgiu0dzy.py", line 1, in <module> a,b =(int(i) for i in input.split()) ^^^^^^^^^^^ AttributeError: 'builtin_function_or_method' object has no attribute 'split'
s698794488
p02391
u184749404
1540384800
Python
Python3
py
Runtime Error
0
0
121
a,b =map(int(i) for i in input.split()) if a > b: print("a > b") elif a == b: print("a == b") else : print("a < b")
Traceback (most recent call last): File "/tmp/tmp0cuxl1ha/tmp60wgxo9x.py", line 1, in <module> a,b =map(int(i) for i in input.split()) ^^^^^^^^^^^ AttributeError: 'builtin_function_or_method' object has no attribute 'split'