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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s900935994 | p02390 | u529272062 | 1446965086 | Python | Python | py | Runtime Error | 0 | 0 | 103 | L=[]
s=int(raw_input())
L+=divmod(s,3600)
L+=divmod(L[1],60)
print ({0}:{1}:{2}).format(L[0],L[2],L[3]) | File "/tmp/tmp4aiqrjct/tmp0a0d1t_y.py", line 5
print ({0}:{1}:{2}).format(L[0],L[2],L[3])
^
SyntaxError: invalid syntax
| |
s676090373 | p02390 | u982618289 | 1448774703 | Python | Python3 | py | Runtime Error | 0 | 0 | 153 | input = int(input().strip())
hour = input // 3600
min = (input - 3600*hour) // 60
sec = input - 3600 * hour - 60 * min
print (":"join(hour, min, sec)) | File "/tmp/tmpfj36s835/tmpcdduocni.py", line 7
print (":"join(hour, min, sec))
^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s921808695 | p02390 | u982618289 | 1448774808 | Python | Python3 | py | Runtime Error | 0 | 0 | 154 | input = int(input().strip())
hour = input // 3600
min = (input - 3600*hour) // 60
sec = input - 3600 * hour - 60 * min
print (":".join(hour, min, sec)) | Traceback (most recent call last):
File "/tmp/tmp4vdxlnx9/tmpmzi41ayd.py", line 1, in <module>
input = int(input().strip())
^^^^^^^
EOFError: EOF when reading a line
| |
s100301271 | p02390 | u982618289 | 1448775257 | Python | Python3 | py | Runtime Error | 0 | 0 | 155 | input = int(input().strip())
hour = input // 3600
min = (input - 3600*hour) // 60
sec = input - 3600 * hour - 60 * min
print (":"join([hour, min, sec])) | File "/tmp/tmpl6x1noxa/tmpldn5i5u6.py", line 7
print (":"join([hour, min, sec]))
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s552827129 | p02390 | u982618289 | 1448775341 | Python | Python3 | py | Runtime Error | 0 | 0 | 156 | input = int(input().strip())
hour = input // 3600
min = (input - 3600*hour) // 60
sec = input - 3600 * hour - 60 * min
print (":".join([hour, min, sec])) | Traceback (most recent call last):
File "/tmp/tmp05xt7h49/tmpfs274ola.py", line 1, in <module>
input = int(input().strip())
^^^^^^^
EOFError: EOF when reading a line
| |
s956578214 | p02390 | u297949443 | 1449919150 | Python | Python | py | Runtime Error | 0 | 0 | 124 | import sys
S = int(sys.stdin.readline())
h = S / 3600
m = (S - h*3600)/60
s = S - h*3600 - m*60
pirnt("%d:%d:%d" % (h,m,s)) | Traceback (most recent call last):
File "/tmp/tmp119vwbhb/tmpejn317ox.py", line 3, in <module>
S = int(sys.stdin.readline())
^^^^^^^^^^^^^^^^^^^^^^^^^
ValueError: invalid literal for int() with base 10: ''
| |
s267393906 | p02390 | u613805578 | 1452048730 | Python | Python | py | Runtime Error | 0 | 0 | 89 | S = input()
a = S // 3600
b = S % 3600
c = b // 60
d = c % 60
print a + ":" + c + ":" + d | File "/tmp/tmpigw4_3_l/tmpt5rxzg2j.py", line 6
print a + ":" + c + ":" + d
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s427675227 | p02390 | u613805578 | 1452048747 | Python | Python | py | Runtime Error | 0 | 0 | 87 | S = input()
a = S / 3600
b = S % 3600
c = b / 60
d = c % 60
print a + ":" + c + ":" + d | File "/tmp/tmpvunkjphj/tmpfivbzmqq.py", line 6
print a + ":" + c + ":" + d
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s242753598 | p02390 | u613805578 | 1452048797 | Python | Python | py | Runtime Error | 0 | 0 | 87 | S = input()
a = S / 3600
b = S % 3600
c = b / 60
d = b % 60
print a + ":" + c + ":" + d | File "/tmp/tmpapyb7tz8/tmp8lpin5gz.py", line 6
print a + ":" + c + ":" + d
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s018260261 | p02390 | u613805578 | 1452048806 | Python | Python | py | Runtime Error | 0 | 0 | 89 | S = input()
a = S // 3600
b = S % 3600
c = b // 60
d = b % 60
print a + ":" + c + ":" + d | File "/tmp/tmpq8r6gsnh/tmpj567812m.py", line 6
print a + ":" + c + ":" + d
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s816534452 | p02390 | u613805578 | 1452048834 | Python | Python | py | Runtime Error | 0 | 0 | 106 | S1 = raw.input()
S = int(S1)
a = S // 3600
b = S % 3600
c = b // 60
d = b % 60
print a + ":" + c + ":" + d | File "/tmp/tmp_5nwgsw5/tmpmazhrjj_.py", line 7
print a + ":" + c + ":" + d
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s742276617 | p02390 | u563876281 | 1452048888 | Python | Python | py | Runtime Error | 0 | 0 | 63 | s=input()
m=(s-s%60)/60
s=s%60
h=(m-m%60)/60
m=m%60
print h:m:s | File "/tmp/tmpc5mqcsp3/tmp8b3tgkqc.py", line 6
print h:m:s
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s511754761 | p02390 | u613805578 | 1452048918 | Python | Python | py | Runtime Error | 0 | 0 | 144 | S1 = raw.input()
S = int(S1)
if 0 <= S and S <= 86400:
a = S // 3600
b = S % 3600
c = b // 60
d = b % 60
print a + ":" + c + ":" + d | File "/tmp/tmp00gdqp8z/tmph30dwda5.py", line 8
print a + ":" + c + ":" + d
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s362909286 | p02390 | u970436839 | 1452048945 | Python | Python | py | Runtime Error | 0 | 0 | 97 | S = input()
h = S/3600
m = (S - 3600*h)/60
s = S -3600*h -60*m
print h ":",
print m ":",
print s | File "/tmp/tmpssy44ujj/tmpbgfb5zxb.py", line 5
print h ":",
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s135533348 | p02390 | u613805578 | 1452048967 | Python | Python | py | Runtime Error | 0 | 0 | 165 | S1 = raw.input()
S = int(S1)
if 0 <= S and S <= 86400:
a = S // 3600
b = S % 3600
c = b // 60
d = b % 60
else:
print Error
print a + ":" + c + ":" + d | File "/tmp/tmp89hqzn7r/tmpvgt149q6.py", line 9
print Error
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s196776324 | p02390 | u613805578 | 1452048988 | Python | Python | py | Runtime Error | 0 | 0 | 163 | S1 = raw.input()
S = int(S1)
if 0 <= S and S <= 86400:
a = S / 3600
b = S % 3600
c = b / 60
d = b % 60
else:
print Error
print a + ":" + c + ":" + d | File "/tmp/tmp6q1l14qf/tmps4dkm5kn.py", line 9
print Error
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s604053057 | p02390 | u613805578 | 1452049035 | Python | Python | py | Runtime Error | 0 | 0 | 163 | S1 = raw.input()
S = int(S1)
if 0 <= S and S <= 86400:
a = S / 3600
b = S % 3600
c = b / 60
d = b % 60
else:
print Error
print a + ":" + c + ":" + d | File "/tmp/tmpxsfne5h2/tmpb5bym4vq.py", line 9
print Error
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s782239494 | p02390 | u970436839 | 1452049113 | Python | Python | py | Runtime Error | 0 | 0 | 82 | S = input()
h = S/3600
m = (S - 3600*h)/60
s = S -3600*h -60*m
print h ":" m ":" s | File "/tmp/tmpdolh3cx1/tmp5o5tndk_.py", line 5
print h ":" m ":" s
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s140536909 | p02390 | u563876281 | 1452049176 | Python | Python | py | Runtime Error | 0 | 0 | 81 | t=int(input())
h=t/3600
m=(t-h*3600)/60
s=t-h*3600-m*60
print %d:%d:%d % (h,m,s) | File "/tmp/tmpllbdwpek/tmprwz09ncd.py", line 6
print %d:%d:%d % (h,m,s)
^
SyntaxError: invalid syntax
| |
s253520442 | p02390 | u613805578 | 1452049216 | Python | Python | py | Runtime Error | 0 | 0 | 151 | S = input()
if 0 <= S and S <= 86400:
a = S / 3600
b = S % 3600
c = b / 60
d = b % 60
else:
print Error
print a + ":" + c + ":" + d
| File "/tmp/tmpm6yyn46p/tmppe93h4xk.py", line 8
print Error
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s073313928 | p02390 | u613805578 | 1452049311 | Python | Python | py | Runtime Error | 0 | 0 | 151 | S = input()
if 0 <= S and S <= 86400:
a = S / 3600
b = S % 3600
c = b / 60
d = b % 60
else:
print Error
printn "%d:%d:%d" %(a,c,d)
| File "/tmp/tmpuoazcm2x/tmppul4fgxl.py", line 8
print Error
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s919056037 | p02390 | u619765879 | 1452071615 | Python | Python | py | Runtime Error | 0 | 0 | 113 | s_sum = input()
h = s_sum / 3600
m = (s_sum - 3600*h) / 60
s = s_sum - 3600*h - 60*m
print h + ':' + m + ':' + s | File "/tmp/tmpiah_f1gv/tmpi7div6pc.py", line 6
print h + ':' + m + ':' + s
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s328232750 | p02390 | u920118302 | 1452140489 | Python | Python | py | Runtime Error | 0 | 0 | 135 | TimeS = raw_input()
TimeM = timeS / 60
sec = time % 60
hou = TimeM / 60
min = TimeM % 60
print(str(hou)+ ":"+ str(min)+ ":"+ str(sec)) | Traceback (most recent call last):
File "/tmp/tmpsu8dtdni/tmp__b_wmnt.py", line 1, in <module>
TimeS = raw_input()
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s519075342 | p02390 | u038005340 | 1452174825 | Python | Python | py | Runtime Error | 0 | 0 | 108 | S = raw_input()
S = int(S)
h = second / 3600
m = (second - time * 3600) / 60
s = second % 60
print h , m , s | File "/tmp/tmppq_rqlry/tmp2gzn7jyc.py", line 6
print h , m , s
^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s469419425 | p02390 | u038005340 | 1452177008 | Python | Python | py | Runtime Error | 0 | 0 | 107 | S = raw_input()
S = int(S)
h = S / 3600
m = (S - h * 3600) / 60
s = S - 3600 * h - 60 * m
print h: , m: , s | File "/tmp/tmp6wjqxf6b/tmpzwup0_nt.py", line 6
print h: , m: , s
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s745693792 | p02390 | u834416077 | 1452333268 | Python | Python | py | Runtime Error | 0 | 0 | 85 | S = map(int, raw_input().split())
h = S/360
m = (S%360)/60
s = (S%360%)60
print h:m:s | File "/tmp/tmpwzr46d74/tmpfi3eifjv.py", line 4
s = (S%360%)60
^
SyntaxError: invalid syntax
| |
s802518819 | p02390 | u834416077 | 1452333307 | Python | Python | py | Runtime Error | 0 | 0 | 85 | S = map(int, raw_input().split())
h = S/360
m = (S%360)/60
s = (S%360)%60
print h:m:s | File "/tmp/tmpiie_87e2/tmpemfyx8z6.py", line 5
print h:m:s
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s485617605 | p02390 | u834416077 | 1452334675 | Python | Python | py | Runtime Error | 0 | 0 | 92 | S = map(int, raw_input().split())
h = S/3600
m = (S%3600)/60
s = (S%3600)%60
print h":"m":"s | File "/tmp/tmpz7oizi0o/tmp35gxewck.py", line 5
print h":"m":"s
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s967994731 | p02390 | u834416077 | 1452334740 | Python | Python | py | Runtime Error | 0 | 0 | 88 | S = map(int, raw_input().split())
h = S/3600
m = S%3600/60
s = S%3600%60
print h":"m":"s | File "/tmp/tmpjo5sbh_x/tmp5a1nc36b.py", line 5
print h":"m":"s
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s145779168 | p02390 | u069446126 | 1452342465 | Python | Python | py | Runtime Error | 0 | 0 | 127 | S = int(raw_input())
h = S / 3600
m = S - 3600*h
s = m % 60
m = m - s
print h,
print ???:???,
print m,
print ???:???,
print s | File "/tmp/tmpzqfruqsc/tmp4nf3ai63.py", line 8
print h,
^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s799057941 | p02390 | u069446126 | 1452342853 | Python | Python | py | Runtime Error | 0 | 0 | 113 | S = int(raw_input())
h = S / 3600
m = S - 3600*h
s = m % 60
m = m - s
S = h + ???:??? + m + ???:??? + s
print S | File "/tmp/tmpn787e7al/tmpadnphtip.py", line 8
S = h + ???:??? + m + ???:??? + s
^
SyntaxError: invalid syntax
| |
s874475434 | p02390 | u069446126 | 1452342954 | Python | Python | py | Runtime Error | 0 | 0 | 128 | S = int(raw_input())
h = S / 3600
m = S - 3600*h
s = m % 60
m = m - s
S = str(h) + ???:??? + str(m) + ???:??? + str(s)
print S | File "/tmp/tmpgme9kn5e/tmphxnawq1r.py", line 8
S = str(h) + ???:??? + str(m) + ???:??? + str(s)
^
SyntaxError: invalid syntax
| |
s517008089 | p02390 | u069446126 | 1452343102 | Python | Python | py | Runtime Error | 0 | 0 | 128 | N = int(raw_input())
h = N / 3600
m = N - 3600*h
s = m % 60
m = m - s
N = str(h) + ???:??? + str(m) + ???:??? + str(s)
print N | File "/tmp/tmpun93lpl4/tmprgvp0ci5.py", line 8
N = str(h) + ???:??? + str(m) + ???:??? + str(s)
^
SyntaxError: invalid syntax
| |
s401840390 | p02390 | u069446126 | 1452343201 | Python | Python | py | Runtime Error | 0 | 0 | 134 | S = raw_input()
S = int(S)
h = S / 3600
m = S - 3600*h
s = m % 60
m = m - s
S = str(h) + ???:??? + str(m) + ???:??? + str(s)
print S | File "/tmp/tmp0zz3k62i/tmpo2gmi5i3.py", line 9
S = str(h) + ???:??? + str(m) + ???:??? + str(s)
^
SyntaxError: invalid syntax
| |
s782046345 | p02390 | u069446126 | 1452343758 | Python | Python | py | Runtime Error | 0 | 0 | 128 | S = int(raw_input())
h = S / 3600
m = S - 3600*h
s = m % 60
m = m - s
S = str(h) + ???:??? + str(m) + ???:??? + str(s)
print S | File "/tmp/tmplbp5fy14/tmpnj0f97a7.py", line 8
S = str(h) + ???:??? + str(m) + ???:??? + str(s)
^
SyntaxError: invalid syntax
| |
s642919300 | p02390 | u069446126 | 1452344360 | Python | Python | py | Runtime Error | 0 | 0 | 122 | S = int(raw_input())
h = S / 3600
m = S - 3600*h
s = m % 60
m = m - s
print str(h) + ???:??? + str(m) + ???:??? + str(s) | File "/tmp/tmpp0qepjv3/tmp6itjxhol.py", line 8
print str(h) + ???:??? + str(m) + ???:??? + str(s)
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s246319111 | p02390 | u069446126 | 1452344433 | Python | Python | py | Runtime Error | 0 | 0 | 122 | S = int(raw_input())
h = S / 3600
m = S - 3600*h
s = m % 60
m = m - s
print str(h) + ???:??? + str(m) + ???:??? + str(s) | File "/tmp/tmpq_g3208n/tmpoohc5zlo.py", line 8
print str(h) + ???:??? + str(m) + ???:??? + str(s)
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s419609412 | p02390 | u069446126 | 1452345162 | Python | Python | py | Runtime Error | 0 | 0 | 123 | S = int(raw_input())
??
h = S / 3600
m = S - 3600*h
s = m % 60
m = (m - s)/60
??
print str(h) + ":" + str(m) + ":" + str(s) | File "/tmp/tmp_sybm67q/tmpsxga8ivc.py", line 2
??
^
SyntaxError: invalid syntax
| |
s854986852 | p02390 | u724923896 | 1452439430 | Python | Python | py | Runtime Error | 0 | 0 | 76 | S = input()
h = S/3600
m = (S-h*3600)/60
s = S - h*3600 - m*60
print h:m:s | File "/tmp/tmp_capbg8r/tmp7qbjlwap.py", line 7
print h:m:s
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s091834825 | p02390 | u724923896 | 1452439504 | Python | Python | py | Runtime Error | 0 | 0 | 88 | S = input()
h = int(S/3600)
m = int((S-h*3600)/60)
s = S - h*3600 - m*60
print h:m:s | File "/tmp/tmpv4mv9jph/tmpslef460k.py", line 7
print h:m:s
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s958721691 | p02390 | u724923896 | 1452439825 | Python | Python | py | Runtime Error | 0 | 0 | 64 | S = input()
h = S/3600
m = S%3600/60
s = S%3600%60
print h:m:s | File "/tmp/tmpup21q07g/tmpzayy5bti.py", line 7
print h:m:s
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s374123271 | p02390 | u724923896 | 1452439893 | Python | Python | py | Runtime Error | 0 | 0 | 70 | S = input()
h = S/3600
m = (S%3600)/60
s = (S%3600)%60
print h:m:s | File "/tmp/tmplulvq3_1/tmpypfhdv3g.py", line 7
print h:m:s
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s468094021 | p02390 | u424209323 | 1452573556 | Python | Python | py | Runtime Error | 0 | 0 | 67 | time = input()
h = time/3600
m = time%60/60
s = time%60
print h:m:s | File "/tmp/tmpjkex8m40/tmprenbao3n.py", line 5
print h:m:s
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s333703957 | p02390 | u456885296 | 1452578113 | Python | Python | py | Runtime Error | 0 | 0 | 52 | S=raw_input()
print S/3600:(s%3600)/60:s-(s%3600)/60 | File "/tmp/tmpbhqe_mg2/tmpizubc_7f.py", line 2
print S/3600:(s%3600)/60:s-(s%3600)/60
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s285580164 | p02390 | u456885296 | 1452578386 | Python | Python | py | Runtime Error | 0 | 0 | 52 | S=raw_input()
print S/3600:(S%3600)/60:S-(S%3600)/60 | File "/tmp/tmpf2b6khfm/tmp9u9srpef.py", line 2
print S/3600:(S%3600)/60:S-(S%3600)/60
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s848895855 | p02390 | u630265299 | 1452579016 | Python | Python | py | Runtime Error | 0 | 0 | 60 | s = input()
int(m) = s / 60
int(h) = s / 3600
return h, m, s | File "/tmp/tmpymx83gxj/tmpvvtj6l4j.py", line 2
int(m) = s / 60
^^^^^^
SyntaxError: cannot assign to function call here. Maybe you meant '==' instead of '='?
| |
s297208546 | p02390 | u630265299 | 1452579987 | Python | Python | py | Runtime Error | 0 | 0 | 87 | n = input()
s = n % 60
m =(n % 3600) - s
int(h) = n / 3600
print '%d:%d:%d' % (h, m, s) | File "/tmp/tmpbhp83jwy/tmpii5c341y.py", line 4
int(h) = n / 3600
^^^^^^
SyntaxError: cannot assign to function call here. Maybe you meant '==' instead of '='?
| |
s127748852 | p02390 | u630265299 | 1452580290 | Python | Python | py | Runtime Error | 0 | 0 | 94 | n = input()
s = n % 60
m =((n % 3600) - s) / 60
int(h) = n / 3600
print '%d:%d:%d' % (h, m, s) | File "/tmp/tmp8yme6r41/tmpy1thimgp.py", line 4
int(h) = n / 3600
^^^^^^
SyntaxError: cannot assign to function call here. Maybe you meant '==' instead of '='?
| |
s105334271 | p02390 | u532962080 | 1452580947 | Python | Python | py | Runtime Error | 0 | 0 | 104 | S=map(int,raw_input().split())
print S/3600:((S-(S/3600)*3600)/60):((S-(S/3600)*3600)-(S/3600)*3600)/60) | File "/tmp/tmp61xoy527/tmpw1u8lal1.py", line 2
print S/3600:((S-(S/3600)*3600)/60):((S-(S/3600)*3600)-(S/3600)*3600)/60)
^
SyntaxError: unmatched ')'
| |
s081566345 | p02390 | u532962080 | 1452581226 | Python | Python | py | Runtime Error | 0 | 0 | 74 | S=map(int,raw_input().split())
h=S/3600
S=S%3600
r=S/60
s=S%60
print h:r:s | File "/tmp/tmpfafmj5oj/tmp34qt75jw.py", line 6
print h:r:s
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s680746407 | p02390 | u532962080 | 1452581860 | Python | Python | py | Runtime Error | 0 | 0 | 57 | S=raw_input()
h=S/3600
S=S%3600
r=S/60
s=S%60
print h:r:s | File "/tmp/tmpsottzf91/tmprax8njwm.py", line 6
print h:r:s
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s322880050 | p02390 | u532962080 | 1452582171 | Python | Python | py | Runtime Error | 0 | 0 | 58 | S=raw_input()
h=S/3600
r=S%3600/60
s=S%3600%60
print h:r:s | File "/tmp/tmpb1jql0qm/tmpn1qq_cdw.py", line 5
print h:r:s
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s504217696 | p02390 | u532962080 | 1452582504 | Python | Python | py | Runtime Error | 0 | 0 | 60 | S=raw_input()
h=S//3600
r=S%3600//60
s=S%3600%60
print h:r:s | File "/tmp/tmp6tgjcjl9/tmpqo4pq7gg.py", line 5
print h:r:s
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s102706769 | p02390 | u456885296 | 1452582898 | Python | Python | py | Runtime Error | 0 | 0 | 49 | S=input()
print S/3600+':'+(S%3600)/60+':'+S%60 | File "/tmp/tmp3j30iq8o/tmptqj2_89r.py", line 3
print S/3600+':'+(S%3600)/60+':'+S%60
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s827559088 | p02390 | u456885296 | 1452583005 | Python | Python | py | Runtime Error | 0 | 0 | 62 | S=input()
print str(S/3600)+':'+str(S%3600)/60+':'+str(S%60) | File "/tmp/tmpqsiau4y5/tmp69qfgr_8.py", line 3
print str(S/3600)+':'+str(S%3600)/60+':'+str(S%60)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s672699786 | p02390 | u456885296 | 1452583019 | Python | Python | py | Runtime Error | 0 | 0 | 62 | S=input()
print str(S/3600)+':'+str(S%3600)/60+':'+str(S%60) | File "/tmp/tmpapnqigco/tmpmfn1n856.py", line 3
print str(S/3600)+':'+str(S%3600)/60+':'+str(S%60)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s611049751 | p02390 | u532962080 | 1452584602 | Python | Python | py | Runtime Error | 0 | 0 | 61 | a=raw_input()
h=a/3600
r=a-h*3600
s=a-h*3600-r*60
print h:r:s | File "/tmp/tmp6yvv55wa/tmp27l5_tp7.py", line 5
print h:r:s
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s043912558 | p02390 | u532962080 | 1452585436 | Python | Python | py | Runtime Error | 0 | 0 | 85 | S=input()
h=S/3600
r=S%3600/60
s=S-h*3600-r*60
print str(h) + : + str(r) + : + str(s) | File "/tmp/tmpq29_m3hd/tmp3etff3a5.py", line 5
print str(h) + : + str(r) + : + str(s)
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s314718815 | p02390 | u078762447 | 1452589721 | Python | Python | py | Runtime Error | 0 | 0 | 107 | sa = raw_input()
sa = int(sa)
s = sa % 60
ma = sa / 60
m = ma % 60
h = ma / 60
print (%d:%d:%d) % (h,m,s) | File "/tmp/tmpb6avpvjn/tmpwmhakg96.py", line 9
print (%d:%d:%d) % (h,m,s)
^
SyntaxError: invalid syntax
| |
s624307713 | p02390 | u177808190 | 1452601260 | Python | Python | py | Runtime Error | 0 | 0 | 90 | S = raw_input()
S = int(S)
m = S / 60
h = m / 60
s = S - 60 * (m + s * 60)
print h:m:s | File "/tmp/tmpdisc7tx3/tmphd19w0g3.py", line 9
print h:m:s
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s789361073 | p02390 | u177295149 | 1452607767 | Python | Python | py | Runtime Error | 0 | 0 | 206 |
raw_time = int(raw_input())
if 0 <= raw_time < 86400:
hour = raw_time / 3600
min = (raw_time - hour * 3600) / 60
sec = (raw_time - hour * 3600 - min * 60)
print(%d:%d:%d)%(hour, min, sec) | File "/tmp/tmptd6k5zsi/tmplvu7d0w1.py", line 8
print(%d:%d:%d)%(hour, min, sec)
^
SyntaxError: invalid syntax
| |
s561906167 | p02390 | u177295149 | 1452607822 | Python | Python | py | Runtime Error | 0 | 0 | 205 | raw_time = int(raw_input())
if 0 <= raw_time < 86400:
hour = raw_time / 3600
min = (raw_time - hour * 3600) / 60
sec = (raw_time - hour * 3600 - min * 60)
print(%d:%d:%d)%(hour, min, sec) | File "/tmp/tmppsjeq7pu/tmp7yk1879y.py", line 7
print(%d:%d:%d)%(hour, min, sec)
^
SyntaxError: invalid syntax
| |
s732905524 | p02390 | u682357930 | 1452609566 | Python | Python | py | Runtime Error | 0 | 0 | 80 | s = input()
h = s/3600
m = s%3600/60
s = s%3600%60
print h + ":" + m + ":" + s | File "/tmp/tmpidevshuo/tmp3yqp4z4q.py", line 7
print h + ":" + m + ":" + s
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s979845854 | p02390 | u828153094 | 1453220535 | Python | Python | py | Runtime Error | 0 | 0 | 65 | x = input()
a = x/3600
b = x%3600/60
c = x%3600%60/60
print a:b:c | File "/tmp/tmpzszyjbuv/tmpdj2mdz8x.py", line 5
print a:b:c
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s497038799 | p02390 | u828153094 | 1453220642 | Python | Python | py | Runtime Error | 0 | 0 | 69 | x = input()
a = x/3600
b = x%3600/60
c = x%3600%60/60
print a':'b':'c | File "/tmp/tmp2_bq4v3d/tmp33dkkfs4.py", line 5
print a':'b':'c
^
SyntaxError: cannot mix bytes and nonbytes literals
| |
s387324447 | p02390 | u803327846 | 1453254799 | Python | Python | py | Runtime Error | 0 | 0 | 109 | S = raw_input()
s = S % 60
h = (S - S % 3600) / 3600
m = (S - s - h * 3600) / 60
print h + ':' + m + ':' + s | File "/tmp/tmp5j9_fevq/tmplyqwqd_f.py", line 6
print h + ':' + m + ':' + s
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s091468964 | p02390 | u803327846 | 1453254834 | Python | Python | py | Runtime Error | 0 | 0 | 110 | S = raw_input()
s = S % 60
h = (S - S % 3600) / 3600
m = (S - s - h * 3600) / 60
print h + ':' + m + ':' + s | File "/tmp/tmpobtopgq_/tmpyy3jla2d.py", line 7
print h + ':' + m + ':' + s
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s965966641 | p02390 | u803327846 | 1453254955 | Python | Python | py | Runtime Error | 0 | 0 | 110 | S = raw_input()
s = S % 60
h = (S - S % 3600) / 3600
m = (S - s - h * 3600) / 60
print h + ":" + m + ":" + s | File "/tmp/tmp4802hbht/tmp80et7rom.py", line 7
print h + ":" + m + ":" + s
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s692721434 | p02390 | u803327846 | 1453255010 | Python | Python | py | Runtime Error | 0 | 0 | 110 | S = raw_input()
s = S % 60
h = (S - S % 3600) / 3600
m = (S - s - h * 3600) / 60
print h + ":" + m + ":" + s | File "/tmp/tmpj15x1kfp/tmp54rj4dsr.py", line 7
print h + ":" + m + ":" + s
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s810698191 | p02390 | u803327846 | 1453255108 | Python | Python | py | Runtime Error | 0 | 0 | 108 | S = raw_input()
s = S % 60
h = (S - S % 3600) / 3600
m = (S - s - h * 3600) / 60
print "%d:%d:%d", (h,m,s) | File "/tmp/tmpd31ppsju/tmpohny72j6.py", line 7
print "%d:%d:%d", (h,m,s)
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s906775214 | p02390 | u803327846 | 1453255116 | Python | Python | py | Runtime Error | 0 | 0 | 108 | S = raw_input()
s = S % 60
h = (S - S % 3600) / 3600
m = (S - s - h * 3600) / 60
print "%d:%d:%d" %(h,m,s) | File "/tmp/tmpdamcow_w/tmpzhuwl0uq.py", line 7
print "%d:%d:%d" %(h,m,s)
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s544899009 | p02390 | u803327846 | 1453255338 | Python | Python | py | Runtime Error | 0 | 0 | 107 | S = raw_input()
s = S % 60
h = (S - S % 3600) / 3600
m = (S - s - h * 3600) / 60
print"%d:%d:%d" %(h,m,s) | File "/tmp/tmp6fkamr26/tmplmnzt9zy.py", line 7
print"%d:%d:%d" %(h,m,s)
^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s837564183 | p02390 | u790959181 | 1453905624 | Python | Python | py | Runtime Error | 0 | 0 | 96 | a = raw_input()
h = a/3600
a %= 3600
m = a/60
s = a%60
print str(h) + ':' + str(m) +':' + str(s) | File "/tmp/tmpgwmief63/tmp1qc2hd25.py", line 6
print str(h) + ':' + str(m) +':' + str(s)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s205592804 | p02390 | u790959181 | 1453905642 | Python | Python | py | Runtime Error | 0 | 0 | 97 | a = raw_input()
h = a/3600
a = a%3600
m = a/60
s = a%60
print str(h) + ':' + str(m) +':' + str(s) | File "/tmp/tmp7t_0yq9n/tmpe880go36.py", line 6
print str(h) + ':' + str(m) +':' + str(s)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s136819256 | p02390 | u790959181 | 1453905695 | Python | Python | py | Runtime Error | 0 | 0 | 98 | a = raw_input()
h = a/3600
a = a%3600
m = a/60
s = a%60
print str(h) + ':' + str(m) + ':' + str(s) | File "/tmp/tmpm10r8er3/tmpontuhoby.py", line 6
print str(h) + ':' + str(m) + ':' + str(s)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s524280046 | p02390 | u279955105 | 1454736735 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | S = input()
h = S/60
m = S%60/60
s = S%60%60
print(str(h) + ":" + str(m) +":" + str(s)) | Traceback (most recent call last):
File "/tmp/tmp1p1cd322/tmplubkx0b7.py", line 1, in <module>
S = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s383806266 | p02390 | u436807165 | 1454990129 | Python | Python | py | Runtime Error | 0 | 0 | 82 | S = input()
s = S%60
m1 = (S-s)/60
m = m1%60
h = (m1-m)/60
print "%s:%s:%s"(h,m,s) | File "/tmp/tmp9x7y7bqq/tmpm0s8sq1y.py", line 6
print "%s:%s:%s"(h,m,s)
^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s186477041 | p02390 | u436807165 | 1454990187 | Python | Python | py | Runtime Error | 0 | 0 | 84 | S = input()
s = S%60
m = ((S-s)/60)%60
h = (((S-s)/60)-m)/60
print "%s:%s:%s"(h,m,s) | File "/tmp/tmp2q1yxyvg/tmp0xwnui0z.py", line 5
print "%s:%s:%s"(h,m,s)
^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s294565327 | p02390 | u075836834 | 1457263057 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | #No4.py
s = input()
h = s/(60*60)
m = s - h*60*60
s = s - h*60*60 - m*60
print(h+":"+m+":"+s) | Traceback (most recent call last):
File "/tmp/tmpbzsfvctz/tmps88c1rq2.py", line 2, in <module>
s = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s212832114 | p02390 | u075836834 | 1457263282 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | #No4.py
s = int(input())
h = s//(60*60)
m = s - h*60*60
s = s - h*60*60 - m*60
print(h+":"+m+":"+s) | Traceback (most recent call last):
File "/tmp/tmpnyu5nukg/tmp86sa7fdh.py", line 2, in <module>
s = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s998116510 | p02390 | u279955105 | 1457488121 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | t = int(input())
a = int(t / 3600)
b = int(t % 3600 / 60)
c = int(t % 3600 % 60)
print(a+':'+b+':'+c) | Traceback (most recent call last):
File "/tmp/tmp5sehvvcv/tmpxtf582zy.py", line 1, in <module>
t = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s791222610 | p02390 | u279955105 | 1457488136 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | t = int(input())
a = int(t / 3600)
b = int(t % 3600 / 60)
c = int(t % 3600 % 60)
print(a+':'+b+':'+c) | Traceback (most recent call last):
File "/tmp/tmp2ryiji29/tmpq8t1ykiw.py", line 1, in <module>
t = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s473819275 | p02390 | u994049982 | 1458603733 | Python | Python | py | Runtime Error | 0 | 0 | 62 | a=input()
print(str(a//3600)+":"+str(a%3600//60)+":"+str(a%60) | File "/tmp/tmpd3cnkgt_/tmpshmny0r5.py", line 2
print(str(a//3600)+":"+str(a%3600//60)+":"+str(a%60)
^
SyntaxError: '(' was never closed
| |
s402186630 | p02390 | u994049982 | 1458603921 | Python | Python | py | Runtime Error | 0 | 0 | 71 | a=int(raw_input())
print(str(a//3600)+":"+str(a%3600//60)+":"+str(a%60) | File "/tmp/tmpjlfw1v9p/tmpgrzomrbn.py", line 2
print(str(a//3600)+":"+str(a%3600//60)+":"+str(a%60)
^
SyntaxError: '(' was never closed
| |
s742931763 | p02390 | u130979865 | 1459552808 | Python | Python | py | Runtime Error | 0 | 0 | 100 | # -*- coding: utf-8 -*-
s = input()
h = s/3600
s = s%3600
m = s/60
s = s%60
print h +":"+ m +":"+ s | File "/tmp/tmpssiodk7a/tmpmfnlluw2.py", line 8
print h +":"+ m +":"+ s
^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s223685964 | p02390 | u402330988 | 1459684974 | Python | Python | py | Runtime Error | 0 | 0 | 160 | import datetime as dt
_data = input()
if 0 <= _date <86400:
n = dt.datetime.formtimestamp(_date)
print n.minute + ":" + n.second + ":" + n.microsecond | File "/tmp/tmp_fch04my/tmpr5dsfjx4.py", line 7
print n.minute + ":" + n.second + ":" + n.microsecond
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s998481393 | p02390 | u402330988 | 1459692587 | Python | Python | py | Runtime Error | 0 | 0 | 114 | input = input()
hour = input / 3600
minute = hour / 60
second = hour / 60
print("%1:%2:%3") % (hour,minute,second) | Traceback (most recent call last):
File "/tmp/tmp3l16wyqp/tmp6k1s_ik4.py", line 1, in <module>
input = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s301634484 | p02390 | u402330988 | 1459692669 | Python | Python | py | Runtime Error | 0 | 0 | 119 | input = int(input())
hour = input / 3600
minute = hour / 60
second = hour / 60
print("%1:%2:%3") % (hour,minute,second) | Traceback (most recent call last):
File "/tmp/tmpe9d755j3/tmpewa3_b94.py", line 1, in <module>
input = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s010531977 | p02390 | u402330988 | 1459692703 | Python | Python3 | py | Runtime Error | 0 | 0 | 119 | input = int(input())
hour = input / 3600
minute = hour / 60
second = hour / 60
print("%1:%2:%3") % (hour,minute,second) | Traceback (most recent call last):
File "/tmp/tmpyptqq82q/tmpfnisia17.py", line 1, in <module>
input = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s005714094 | p02390 | u402330988 | 1459692726 | Python | Python | py | Runtime Error | 0 | 0 | 121 | input = int(input())
hour = input / 3600
minute = hour / 60
second = minute / 60
print("%1:%2:%3") % (hour,minute,second) | Traceback (most recent call last):
File "/tmp/tmp53p1cb59/tmp5rsubjda.py", line 1, in <module>
input = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s744988332 | p02390 | u402330988 | 1459692776 | Python | Python | py | Runtime Error | 0 | 0 | 121 | int(input) = input()
hour = input / 3600
minute = hour / 60
second = minute / 60
print("%1:%2:%3") % (hour,minute,second) | File "/tmp/tmp68nzcpd1/tmpqrg0h4ct.py", line 1
int(input) = input()
^^^^^^^^^^
SyntaxError: cannot assign to function call here. Maybe you meant '==' instead of '='?
| |
s266457180 | p02390 | u402330988 | 1459692794 | Python | Python | py | Runtime Error | 0 | 0 | 121 | input = input()
hour = int(input) / 3600
minute = hour / 60
second = minute / 60
print("%1:%2:%3") % (hour,minute,second) | Traceback (most recent call last):
File "/tmp/tmpquia8ef_/tmpq4vlw1dq.py", line 1, in <module>
input = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s478728939 | p02390 | u402330988 | 1459693177 | Python | Python | py | Runtime Error | 0 | 0 | 125 | input = int(row_input())
hour = input / 3600
minute = hour / 60
second = minute / 60
print("%1:%2:%3") % (hour,minute,second) | Traceback (most recent call last):
File "/tmp/tmpvrlnz638/tmpafr66er_.py", line 1, in <module>
input = int(row_input())
^^^^^^^^^
NameError: name 'row_input' is not defined
| |
s621734393 | p02390 | u402330988 | 1459693236 | Python | Python | py | Runtime Error | 0 | 0 | 123 | input = int(row_input())
hour = input / 3600
minute = hour / 60
second = minute / 60
print("%1:%2:%3"%(hour,minute,second)) | Traceback (most recent call last):
File "/tmp/tmpt7ozri1a/tmppsm7u49y.py", line 1, in <module>
input = int(row_input())
^^^^^^^^^
NameError: name 'row_input' is not defined
| |
s939079787 | p02390 | u402330988 | 1459693313 | Python | Python | py | Runtime Error | 0 | 0 | 123 | input = int(row_input())
hour = input / 3600
minute = hour / 60
second = minute / 60
print"%1:%2:%3" % (hour,minute,second) | File "/tmp/tmpdy6b3gy4/tmph2e9o4_0.py", line 5
print"%1:%2:%3" % (hour,minute,second)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s942473431 | p02390 | u402330988 | 1459693338 | Python | Python | py | Runtime Error | 0 | 0 | 114 | input = input()
hour = input / 3600
minute = hour / 60
second = minute / 60
print"%1:%2:%3" % (hour,minute,second) | File "/tmp/tmpxqm764n1/tmpovw410s5.py", line 5
print"%1:%2:%3" % (hour,minute,second)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s632029524 | p02390 | u402330988 | 1459694082 | Python | Python | py | Runtime Error | 0 | 0 | 165 |
input = input()
if 0 <= input < 86400
hour = input % 3600
minute = hour % 60
seconde = minute % 60
print ("{0}:{1}:{2}").format(hour,minute,seconde) | File "/tmp/tmp22h7js0w/tmpr6n309xq.py", line 3
if 0 <= input < 86400
^
SyntaxError: expected ':'
| |
s021927368 | p02390 | u402330988 | 1459694999 | Python | Python | py | Runtime Error | 0 | 0 | 364 | def main():
#input = input()
input = 76500
if 0 <= input < 86400:
hour = input % 3600
minute = hour % 60
seconde = minute % 60
#print("{0}:{1}:{2}".format(h, m, s))
print("{0}:{1}:{2}".format(hour,minute,seconde))
if __name__ == "__main__":
print("main start!")
main()
print("main end!")ute,seconde) | File "/tmp/tmpq_xpmsai/tmph7260_z0.py", line 14
print("main end!")ute,seconde)
^
SyntaxError: unmatched ')'
| |
s781003389 | p02390 | u402330988 | 1459695024 | Python | Python | py | Runtime Error | 0 | 0 | 364 | def main():
input = input()
#input = 76500
if 0 <= input < 86400:
hour = input % 3600
minute = hour % 60
seconde = minute % 60
#print("{0}:{1}:{2}".format(h, m, s))
print("{0}:{1}:{2}".format(hour,minute,seconde))
if __name__ == "__main__":
print("main start!")
main()
print("main end!")ute,seconde) | File "/tmp/tmp7c_lmco3/tmpmhf6hb0m.py", line 14
print("main end!")ute,seconde)
^
SyntaxError: unmatched ')'
| |
s899752881 | p02390 | u402330988 | 1459695035 | Python | Python | py | Runtime Error | 0 | 0 | 364 | def main():
input = input()
#input = 76500
if 0 <= input < 86400:
hour = input % 3600
minute = hour % 60
seconde = minute % 60
#print("{0}:{1}:{2}".format(h, m, s))
print("{0}:{1}:{2}".format(hour,minute,seconde))
if __name__ == "__main__":
print("main start!")
main()
print("main end!")ute,seconde) | File "/tmp/tmpy0ky_h3_/tmpnywpe0sq.py", line 14
print("main end!")ute,seconde)
^
SyntaxError: unmatched ')'
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.