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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s534206415 | p02389 | u987236471 | 1530445208 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | a = input(), b = input()
c = int(a)
d = int(b)
print(c*d, 2*c+2*d)
| File "/tmp/tmp1kl9loo1/tmp4g805nz1.py", line 1
a = input(), b = input()
^^^^^^^^^^^
SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
| |
s369580499 | p02389 | u987236471 | 1530445365 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | a = input()
b = input()
c = int(a)
d = int(b)
print(c*d, 2*c+2*d)
| Traceback (most recent call last):
File "/tmp/tmpjzuzw6yh/tmp8h5okp2e.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s288843233 | p02389 | u987236471 | 1530445390 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | a = input()
b = input()
c = int(a)
d = int(b)
print(c*d 2*c+2*d)
| File "/tmp/tmp1auxqhab/tmpcizc_j8j.py", line 6
print(c*d 2*c+2*d)
^
SyntaxError: invalid syntax
| |
s448732678 | p02389 | u987236471 | 1530445420 | Python | Python | py | Runtime Error | 0 | 0 | 67 | a = input()
b = input()
c = int(a)
d = int(b)
print(c*d 2*c+2*d)
| File "/tmp/tmpw9pz73nx/tmphmm4o4jh.py", line 6
print(c*d 2*c+2*d)
^
SyntaxError: invalid syntax
| |
s999129865 | p02389 | u987236471 | 1530445599 | Python | Python | py | Runtime Error | 0 | 0 | 67 | a = input()
b = input()
c = int(a)
d = int(b)
print(c*d 2*(c+d))
| File "/tmp/tmp3fmyzbug/tmp7ehxsnsj.py", line 6
print(c*d 2*(c+d))
^
SyntaxError: invalid syntax
| |
s369616178 | p02389 | u987236471 | 1530445621 | Python | Python | py | Runtime Error | 0 | 0 | 66 | a = input()
b = input()
c = int(a)
d = int(b)
print(c*d 2*(c+d))
| File "/tmp/tmprui74vn6/tmpu0wtuibt.py", line 5
print(c*d 2*(c+d))
^
SyntaxError: invalid syntax
| |
s903527910 | p02389 | u987236471 | 1530445660 | Python | Python | py | Runtime Error | 0 | 0 | 54 | a = int(input())
b = int(input())
print(c*d 2*(c+d))
| File "/tmp/tmpr45lh1p9/tmpqyl17hu1.py", line 3
print(c*d 2*(c+d))
^
SyntaxError: invalid syntax
| |
s133913919 | p02389 | u987236471 | 1530448488 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | a = int(input())
b = int(input())
print(a*b), print(2*(a+b))
| Traceback (most recent call last):
File "/tmp/tmpzfjv6ysq/tmpyiprw5se.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s872795065 | p02389 | u987236471 | 1530448529 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | a = int(input())
b = int(input())
print(a*b), print(2*(a+b))
| Traceback (most recent call last):
File "/tmp/tmp4y2kwkz_/tmpfqh2n0_a.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s307811515 | p02389 | u258445230 | 1530670539 | Python | Python | py | Runtime Error | 0 | 0 | 56 | h=input()
w=input()
a=h*w
b=h*2+w*2
print(a)
print(b)
| Traceback (most recent call last):
File "/tmp/tmph0fnc5a7/tmpxcodevrb.py", line 1, in <module>
h=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s028860467 | p02389 | u258445230 | 1530670603 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | h=input()
w=input()
a=h*w
b=h+h+w+w
print(a)
print(b)
| Traceback (most recent call last):
File "/tmp/tmpac7ow8a_/tmp83wocuzg.py", line 1, in <module>
h=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s655434509 | p02389 | u258445230 | 1530670609 | Python | Python | py | Runtime Error | 0 | 0 | 56 | h=input()
w=input()
a=h*w
b=h+h+w+w
print(a)
print(b)
| Traceback (most recent call last):
File "/tmp/tmpmjpoq0_5/tmpse6uuvnw.py", line 1, in <module>
h=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s184129253 | p02389 | u763301852 | 1363005224 | Python | Python | py | Runtime Error | 0 | 0 | 83 | a, b = (raw_input().split())
a = int(a)
b = int(b)
print("%d %d", % (a*b, (a+b)*2)) | File "/tmp/tmp4sbi87s7/tmpnb1nd7qr.py", line 4
print("%d %d", % (a*b, (a+b)*2))
^
SyntaxError: invalid syntax
| |
s012070654 | p02389 | u413456759 | 1365240648 | Python | Python | py | Runtime Error | 0 | 0 | 157 | #!/usr/bin/env python
# coding: utf-8
def main():
a = int(raw_input())
b = int(raw_input())
print a * b, (a + b) * 2
if __name__ == '__main__':
main() | File "/tmp/tmp44xxmlui/tmp9kiywnu2.py", line 8
print a * b, (a + b) * 2
^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s658337001 | p02389 | u912237403 | 1370853126 | Python | Python | py | Runtime Error | 0 | 0 | 88 | import sys
a,b = sys.stdin.split(' ')
a, b = int(a),int(b)
print '%d %d' %(a*b, 2*(a+b)) | File "/tmp/tmpcg51ocqr/tmploqyekmb.py", line 4
print '%d %d' %(a*b, 2*(a+b))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s587724937 | p02389 | u231998559 | 1386548646 | Python | Python | py | Runtime Error | 0 | 0 | 49 | a, b = input.split()
print str(a*b), str((a+b)*2) | File "/tmp/tmpb4h82c7l/tmpuc_hzk_v.py", line 2
print str(a*b), str((a+b)*2)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s476700547 | p02389 | u063179562 | 1389967475 | Python | Python | py | Runtime Error | 0 | 0 | 52 | a,b = map(int,raw_input().split())
print a*b.2*(a+b) | File "/tmp/tmpg5vvishq/tmp6vokk1qo.py", line 2
print a*b.2*(a+b)
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s277617671 | p02389 | u472257605 | 1393002196 | Python | Python | py | Runtime Error | 0 | 0 | 55 | a = eval(input())
b = eval(input())
print (a*b,a*2+b*2) | Traceback (most recent call last):
File "/tmp/tmpl08m5jjs/tmp0n_1qquz.py", line 1, in <module>
a = eval(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s063341280 | p02389 | u472257605 | 1393002322 | Python | Python | py | Runtime Error | 0 | 0 | 53 | a = int(input())
b = int(input())
print (a*b,a*2+b*2) | Traceback (most recent call last):
File "/tmp/tmpzwirreo5/tmpqazbpma8.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s094159950 | p02389 | u292964502 | 1396034597 | Python | Python | py | Runtime Error | 0 | 0 | 79 | a = int(raw_input("input a:"))
b = int(raw_input("input b:"))
print a*b,2*a+2*b | File "/tmp/tmp_guujhql/tmp2lxvgtku.py", line 3
print a*b,2*a+2*b
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s257029250 | p02389 | u292964502 | 1396034766 | Python | Python | py | Runtime Error | 0 | 0 | 63 | a = int(raw_input(""))
b = int(raw_input(""))
print a*b,2*a+2*b | File "/tmp/tmpy27glwpr/tmpmz58ir12.py", line 3
print a*b,2*a+2*b
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s722508734 | p02389 | u292964502 | 1396035055 | Python | Python | py | Runtime Error | 0 | 0 | 64 | a = int(raw_input(""))
b = int(raw_input(""))
print a*b, 2*a+2*b | File "/tmp/tmpk8i7xtdq/tmphge0ckk6.py", line 3
print a*b, 2*a+2*b
^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s511528146 | p02389 | u971748390 | 1398066451 | Python | Python | py | Runtime Error | 0 | 0 | 52 | a=input();
b=input();
d=a*b;
l=2*(a+b) ;
print d l ; | File "/tmp/tmpxo06y910/tmpe9pvc14l.py", line 5
print d l ;
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s995786307 | p02389 | u703446356 | 1398964760 | Python | Python | py | Runtime Error | 0 | 0 | 51 | (a b) = map(int, raw_input().split())
print (a+b)*2 | File "/tmp/tmpcg0rdmhq/tmp7v_xafdo.py", line 1
(a b) = map(int, raw_input().split())
^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s896532968 | p02389 | u186524656 | 1402037388 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | a = int(input())
b = int(input())
l = a*b
print(l)
k = (a + b) * 2
print(k) | Traceback (most recent call last):
File "/tmp/tmpsgy5yko9/tmpqotg5_u4.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s709919052 | p02389 | u186524656 | 1402037440 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | a = int(input())
b = int(input())
l = a*b
print(l)
k = (a + b) * 2
print(k) | Traceback (most recent call last):
File "/tmp/tmpo_kvn33e/tmprx2573pg.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s600235468 | p02389 | u186524656 | 1402038218 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | a, b = map(int, raw_input().split())
print('%d %d' % (a*b, (a+b)*2) | File "/tmp/tmp6zvqp2qr/tmpwo6tah5p.py", line 2
print('%d %d' % (a*b, (a+b)*2)
^
SyntaxError: '(' was never closed
| |
s320793331 | p02389 | u186524656 | 1402038329 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | a, b = map(int, raw_input().split())
print("%d %d" % (a*b, (a+b)*2)) | Traceback (most recent call last):
File "/tmp/tmp1ct38s4d/tmpg27z0f_d.py", line 1, in <module>
a, b = map(int, raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s950004029 | p02390 | u452254177 | 1530974943 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | X = int(input())
H = X / 3600
X = X%3600
M = X / 60
X %= 60
print(H":",M":",,X":")
| File "/tmp/tmp7f8nyu__/tmp1kv_is31.py", line 6
print(H":",M":",,X":")
^^^
SyntaxError: invalid syntax
| |
s223184766 | p02390 | u324811972 | 1531381568 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | ts = input()
h = ts/3600
ts-= h*3600
m = ts/60
ts -= m*60
text = str(h)+":"+str(m)+":"+str(ts)
print(text)
| Traceback (most recent call last):
File "/tmp/tmpzr0stc2l/tmp7ursbocr.py", line 1, in <module>
ts = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s086732785 | p02390 | u303952184 | 1531839605 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | S = int(input())
print (S//3600, + ":" + S//60, + ":" + S%60)
| Traceback (most recent call last):
File "/tmp/tmplibnt2wk/tmpdywps11o.py", line 1, in <module>
S = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s868109129 | p02390 | u303952184 | 1531839624 | Python | Python3 | py | Runtime Error | 0 | 0 | 44 | S = int(input())
print (S//3600:S//60:S%60)
| File "/tmp/tmp5juxz7gs/tmptoawbm79.py", line 2
print (S//3600:S//60:S%60)
^
SyntaxError: invalid syntax
| |
s865655274 | p02390 | u823973500 | 1535172111 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | S=input()
if 0<=S<86400:
s=S%60
m=(S-s)%3600
h=(S-m-s)/3600
print(h+":"+m/60+":"+s)
| Traceback (most recent call last):
File "/tmp/tmpyn9n93pw/tmp4zqhjncx.py", line 1, in <module>
S=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s156021396 | p02390 | u578074046 | 1535532934 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | s = input()
hour = s//3600
minute = s//60
sec = s%60
print(str(hour)+":"+str(minute)+":"+str(sec))
| Traceback (most recent call last):
File "/tmp/tmpu0kxq3kf/tmp_ngqfhro.py", line 1, in <module>
s = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s444361390 | p02390 | u394290028 | 1540618404 | Python | Python3 | py | Runtime Error | 0 | 0 | 174 | S = int(input())
h = 0
m = 0
s = 0
while S > 60:
S -= 60
m += 1
while m > 60:
m -= 60
h += 1
s += S
print(str(h) + ":" + str(m) + ":" + str(s))
| File "/tmp/tmpd5y76yse/tmppjpq3zri.py", line 10
h += 1
IndentationError: unexpected indent
| |
s594228047 | p02390 | u052934958 | 1541061574 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | S = input(int)
print(S//3600)
print(':')
print(S//60%60)
print(':')
print(S%60)
| Traceback (most recent call last):
File "/tmp/tmpix7n_rhk/tmp02j8pduz.py", line 1, in <module>
S = input(int)
^^^^^^^^^^
EOFError: EOF when reading a line
| <class 'int'> |
s221077201 | p02390 | u052934958 | 1541062113 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | S = input(int)
foo=(str(S//3600)+':'+str(S//60%60)+':'+str(S%60))
print(foo)
| Traceback (most recent call last):
File "/tmp/tmpc7jnvo4z/tmp4k7uq5l0.py", line 1, in <module>
S = input(int)
^^^^^^^^^^
EOFError: EOF when reading a line
| <class 'int'> |
s189689033 | p02390 | u052934958 | 1541062182 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | S = input(str)
foo=(str(S//3600)+':'+str(S//60%60)+':'+str(S%60))
print(foo)
| Traceback (most recent call last):
File "/tmp/tmprntdk0ok/tmpwcpkm6dv.py", line 1, in <module>
S = input(str)
^^^^^^^^^^
EOFError: EOF when reading a line
| <class 'str'> |
s255141049 | p02390 | u262004823 | 1541245481 | Python | Python3 | py | Runtime Error | 0 | 0 | 118 | x=int(input())
a=x%3600
hour=(x-a)/3600
second=a%60
minute=(a-b)/60
print(str(hour)+":"+str(minute)+":"+str(second))
| Traceback (most recent call last):
File "/tmp/tmpx7hd6tpq/tmpw6cgnvdw.py", line 1, in <module>
x=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s541541324 | p02390 | u668055645 | 1545264922 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | import datetime as d
a = d.timedelta(seconds=int(input()))
print((a+d).hour, (a+d).minute, (a+d).second, sep=':')
| Traceback (most recent call last):
File "/tmp/tmpt7of3guq/tmpqehu308w.py", line 2, in <module>
a = d.timedelta(seconds=int(input()))
^^^^^^^
EOFError: EOF when reading a line
| |
s909105264 | p02390 | u668055645 | 1545264975 | Python | Python3 | py | Runtime Error | 0 | 0 | 135 | import datetime as d
a,b = d.timedelta(seconds=int(input())).d.datetime(1,1,1)
print(((a+b).hour, (a+b).minute, (a+b).second, sep=':')
| File "/tmp/tmph6cy30nr/tmp7b_9bhz2.py", line 3
print(((a+b).hour, (a+b).minute, (a+b).second, sep=':')
^^^^^^^
SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
| |
s679939045 | p02390 | u668055645 | 1545264989 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | import datetime as d
a,b = d.timedelta(seconds=int(input())).d.datetime(1,1,1)
print((a+b).hour, (a+b).minute, (a+b).second, sep=':')
| Traceback (most recent call last):
File "/tmp/tmpm_qymsvp/tmpx3xywg_b.py", line 2, in <module>
a,b = d.timedelta(seconds=int(input())).d.datetime(1,1,1)
^^^^^^^
EOFError: EOF when reading a line
| |
s370995290 | p02390 | u266788078 | 1545314792 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | A = int(input())
print(%h:%m:%s %(A/3600,A%3600/60,A%60))
| File "/tmp/tmpq99ncbg7/tmpkiy6m8sz.py", line 2
print(%h:%m:%s %(A/3600,A%3600/60,A%60))
^
SyntaxError: invalid syntax
| |
s826209356 | p02390 | u266788078 | 1545314834 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | A = int(input())
print('%h:%m:%s' %(A/3600,A%3600/60,A%60))
| Traceback (most recent call last):
File "/tmp/tmpnrsqd3mw/tmpofguijb5.py", line 1, in <module>
A = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s969438207 | p02390 | u266788078 | 1545314872 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | A = int(input())
print('%h:%m:%s' % (A/3600,A%3600/60,A%60))
| Traceback (most recent call last):
File "/tmp/tmpi6jsitty/tmpknh3zaxm.py", line 1, in <module>
A = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s293910260 | p02390 | u266788078 | 1545314938 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | A = int(input())
print("%h:%m:%s" % (A/3600,A%3600/60,A%60))
| Traceback (most recent call last):
File "/tmp/tmpvbcgwa1u/tmp76zc8fj_.py", line 1, in <module>
A = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s765578923 | p02390 | u266788078 | 1545314953 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | A = int(input())
print("%h:%m:%s"%(A/3600,A%3600/60,A%60))
| Traceback (most recent call last):
File "/tmp/tmpa6mqx1py/tmpwa_evo64.py", line 1, in <module>
A = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s011184946 | p02390 | u266788078 | 1545314979 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | A = int(input())
print("%h:%m:%s"%(A/3600,(A%3600)/60,A%60))
| Traceback (most recent call last):
File "/tmp/tmp_189nxq9/tmp24dvkp77.py", line 1, in <module>
A = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s368293940 | p02390 | u266788078 | 1545315143 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | A = int(input())
print(A/3600,":",(A%3600)/60,":",A%60))
| File "/tmp/tmpijxo1nj5/tmp_2v0fzrv.py", line 2
print(A/3600,":",(A%3600)/60,":",A%60))
^
SyntaxError: unmatched ')'
| |
s769716033 | p02390 | u266788078 | 1545315308 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | A = int(input())
print(%d:%d:%d %(A/3600,":",(A%3600)/60,":",A%60))
| File "/tmp/tmp7olo05ki/tmpp61tcz1j.py", line 2
print(%d:%d:%d %(A/3600,":",(A%3600)/60,":",A%60))
^
SyntaxError: invalid syntax
| |
s249017616 | p02390 | u316246166 | 1545574111 | Python | Python3 | py | Runtime Error | 0 | 0 | 146 | x = int(input())
import math
h = math.floor(x/3600)
m = math.floor((x -h*3600)/60)
s = math.floor(x - h*3600 - m*60)
print0(h, ':',m , ':', s)
| Traceback (most recent call last):
File "/tmp/tmpbny48ney/tmporv0nnz8.py", line 1, in <module>
x = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s718605827 | p02390 | u962909487 | 1545812250 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | number = int(input())
print(number//3600, (number%3600)//60, (number%3600)%60).split(':')
| Traceback (most recent call last):
File "/tmp/tmpmuofn_ta/tmpvqfb606x.py", line 1, in <module>
number = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s267466888 | p02390 | u962909487 | 1545812364 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | number = int(input())
h = number//3600
m = (number%3600)//60
s = (number%3600)%60
print(h +':' + m + ':' + s)
| Traceback (most recent call last):
File "/tmp/tmp7yebislv/tmpfcxu93b1.py", line 1, in <module>
number = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s867163406 | p02390 | u962909487 | 1545812688 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | sec = int(input())
print(sec//3600, ':', (sec//3600)%60, ':', sec%60, sep' ')
| File "/tmp/tmpsbycbdbs/tmpggx6nrf7.py", line 2
print(sec//3600, ':', (sec//3600)%60, ':', sec%60, sep' ')
^^^
SyntaxError: invalid syntax
| |
s094109724 | p02390 | u634490486 | 1546076066 | Python | Python3 | py | Runtime Error | 0 | 0 | 150 | from sys import stdin
s = int(stdin.readline().rstrip().split())
h = s//3600
m = (s%3600)//60
sec = (s%3600)%60
print("{}:{}:{}".format(h, m, sec))
| Traceback (most recent call last):
File "/tmp/tmp1pzcyga_/tmpflpe3pod.py", line 3, in <module>
s = int(stdin.readline().rstrip().split())
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
TypeError: int() argument must be a string, a bytes-like object or a real number, not 'list'
| |
s536237313 | p02390 | u498462680 | 1546087233 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | S = int(input())
h = int(S/3600)
m = S- 9nt(h*3600)/60)
sec = S- h*3600-m*60;
print(str(h)+":"+str(m)+":"+str(sec))
| File "/tmp/tmpusoi_m7g/tmpmw5d6vog.py", line 3
m = S- 9nt(h*3600)/60)
^
SyntaxError: invalid decimal literal
| |
s588544920 | p02390 | u498462680 | 1546087241 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | S = int(input())
h = int(S/3600)
m = S- int(h*3600)/60)
sec = S- h*3600-m*60;
print(str(h)+":"+str(m)+":"+str(sec))
| File "/tmp/tmpvht8et_v/tmp2f2jwbib.py", line 3
m = S- int(h*3600)/60)
^
SyntaxError: unmatched ')'
| |
s384938721 | p02390 | u984892564 | 1551534364 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | s = int.input()
h = s/3600
s = s - 3600*h
m = s/60
s = s - 60*m
print(h ':' m ':' s)
| File "/tmp/tmpfrfwsnx6/tmp6pw73h_x.py", line 6
print(h ':' m ':' s)
^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s324088050 | p02390 | u984892564 | 1551534501 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | s = input()
s = int(s)
h = s//3600
s = s - 3600*h
m = s//60
s = s - 60*m
print(h,':',m,':',s)
| File "/tmp/tmp5jzhe40t/tmprtkxoxao.py", line 1
s = input()
IndentationError: unexpected indent
| |
s278670958 | p02390 | u904261809 | 1555661537 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | time = int(input)
h = time / 3600
m = (time % 3600) / 60
s = time % 60
print(str(h) + ":" + str(m) + ":" + str(s))
| Traceback (most recent call last):
File "/tmp/tmpkuh2za1x/tmpnv3nm9_u.py", line 1, in <module>
time = int(input)
^^^^^^^^^^
TypeError: int() argument must be a string, a bytes-like object or a real number, not 'builtin_function_or_method'
| |
s422785527 | p02390 | u482227082 | 1555672963 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | time = int(input())
sec = time%60
min = (time/60)%60
hour = time/60
print (hour+":"+min+":"+sec)
| Traceback (most recent call last):
File "/tmp/tmp0ambke75/tmp9swos704.py", line 1, in <module>
time = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s796479349 | p02390 | u482227082 | 1555673007 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | time = int(input())
sec = time%60
min = (time/60)%60
hour = (time/60)/60
print (hour+":"+min+":"+sec)
| Traceback (most recent call last):
File "/tmp/tmpigg_x1xn/tmpk4oxi8p2.py", line 1, in <module>
time = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s608481465 | p02390 | u482227082 | 1555673082 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | time = int(input())
sec = time%60
min = (time//60)%60
hour = (time//60)//60
print (hour+":"+min+":"+sec)
| Traceback (most recent call last):
File "/tmp/tmp0ce4qvbl/tmpin1b35zy.py", line 1, in <module>
time = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s916004154 | p02390 | u967268722 | 1555767519 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | t=int(input)
print('{}:{}:{}'.format(t//3600,t//60%60,t%60))
| Traceback (most recent call last):
File "/tmp/tmpxt9a2fs0/tmpajl034cu.py", line 1, in <module>
t=int(input)
^^^^^^^^^^
TypeError: int() argument must be a string, a bytes-like object or a real number, not 'builtin_function_or_method'
| |
s108098394 | p02390 | u651717882 | 1555874006 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | S = int(input())
h = S//3600
m = S%3600//60
s = S%60
print(h:m:s)
| File "/tmp/tmpzcltergp/tmp8yhzgp71.py", line 5
print(h:m:s)
^
SyntaxError: invalid syntax
| |
s300676007 | p02390 | u651717882 | 1555874389 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | S = int(input())
h = S//3600
m = S%3600//60
s = S%60
print("h":"m":"s")
| File "/tmp/tmptmyf9whh/tmpwgt366lz.py", line 5
print("h":"m":"s")
^
SyntaxError: invalid syntax
| |
s122166089 | p02390 | u651717882 | 1555874399 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | S = int(input())
h = S//3600
m = S%3600//60
s = S%60
print(a"h":"m":"s")
| File "/tmp/tmpfle48qqr/tmp54ij_8qw.py", line 5
print(a"h":"m":"s")
^^^
SyntaxError: invalid syntax
| |
s254975536 | p02390 | u651717882 | 1555874413 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | S = int(input())
h = S//3600
m = S%3600//60
s = S%60
print(f"h":"m":"s")
| File "/tmp/tmppqcjhu6o/tmpp78kw88z.py", line 5
print(f"h":"m":"s")
^
SyntaxError: invalid syntax
| |
s007493639 | p02390 | u651717882 | 1555874468 | 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".split(:))
| File "/tmp/tmpruj5_rj7/tmpuw40cd5q.py", line 5
print("h":"m":"s".split(:))
^
SyntaxError: invalid syntax
| |
s763624237 | p02390 | u651717882 | 1555874486 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | S = int(input())
h = S//3600
m = S%3600//60
s = S%60
print(h:m:s.split(:))
| File "/tmp/tmpiboxhrdl/tmp_r8ib8ho.py", line 5
print(h:m:s.split(:))
^
SyntaxError: invalid syntax
| |
s426196631 | p02390 | u651717882 | 1555874639 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | S = int(input())
h = S//3600
m = S%3600//60
s = S%60
print(h:m:s.split(":"))
| File "/tmp/tmpi1uri146/tmpb3ack1ax.py", line 5
print(h:m:s.split(":"))
^
SyntaxError: invalid syntax
| |
s328987892 | p02390 | u651717882 | 1555875555 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | S = int(input())
h = S//3600
m = S%3600//60
s = S%60
print(f"{h}:{m}:{s})
| File "/tmp/tmp00twjy2n/tmpe3dekau1.py", line 5
print(f"{h}:{m}:{s})
^
SyntaxError: unterminated string literal (detected at line 5)
| |
s819952768 | p02390 | u651717882 | 1555876772 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | S = int(input())
h = S//3600
m = S%3600//60
s = S%60
time="h,m,s"
print(time.split(`:`))
| File "/tmp/tmpf7j8znrt/tmp4a1r72aa.py", line 6
print(time.split(`:`))
^
SyntaxError: invalid syntax
| |
s599233259 | p02390 | u525395303 | 1555910235 | Python | Python3 | py | Runtime Error | 0 | 0 | 3 | kl
| Traceback (most recent call last):
File "/tmp/tmpcesedb60/tmpsjq8t6gx.py", line 1, in <module>
kl
NameError: name 'kl' is not defined
| |
s144766229 | p02390 | u525395303 | 1555910357 | Python | Python3 | py | Runtime Error | 0 | 0 | 3 | kl
| Traceback (most recent call last):
File "/tmp/tmprrokhh_i/tmpk3gkjrj1.py", line 1, in <module>
kl
NameError: name 'kl' is not defined
| |
s225517483 | p02390 | u212392281 | 1555910441 | Python | Python3 | py | Runtime Error | 0 | 0 | 138 | s = input()
S = int(s)
a = S/(60*60)
b = (S-(int(a))*60*60)/60
c = S-(int(a)*60*60 + int(b)*60)
print(int(a), ":", int(b), ":", int(c)\n)
| File "/tmp/tmpslegysv3/tmp3z9xcup3.py", line 6
print(int(a), ":", int(b), ":", int(c)\n)
^
SyntaxError: unexpected character after line continuation character
| |
s336124291 | p02390 | u607723579 | 1555910510 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | s = input()
h = s/3600
s = s%3600
m = s/60
s = s%60
print str(h) + ":" + str(m) + ":" + str(s)
| File "/tmp/tmp8rs2km7k/tmpsa9iozh4.py", line 7
print str(h) + ":" + str(m) + ":" + str(s)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s477075472 | p02390 | u607723579 | 1555910605 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | s = input()
h = s/3600
s = s%3600
m = s/60
s = s%60
print(h,':',m,':',s,sep='')
| Traceback (most recent call last):
File "/tmp/tmpyxzqfptx/tmpfkhrzql2.py", line 1, in <module>
s = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s316177000 | p02390 | u804558166 | 1555910806 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | x=int(input())
print(x/3600, ':', (x-x/3600)/60, ':', x-{(x-x/3600)/60}, sep='')
| Traceback (most recent call last):
File "/tmp/tmp2a94twwj/tmp15bwrkbq.py", line 1, in <module>
x=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s978419100 | p02390 | u814278309 | 1555910923 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | S=int(input())
h=S//3600
m=(S-h*3600)//60
m=(S-h*3600)-m*60
print(h,':',m,':',s, sep='')
| Traceback (most recent call last):
File "/tmp/tmp1kbss855/tmplpdhw4ak.py", line 1, in <module>
S=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s025594623 | p02390 | u814278309 | 1555910946 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | S=int(input())
h=S//3600
m=(S-h*3600)//60
m=(S-h*3600)-m*60
print(h,':',m,':',s, sep='')
| Traceback (most recent call last):
File "/tmp/tmp7axchey5/tmp3gck1lla.py", line 1, in <module>
S=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s995698729 | p02390 | u804558166 | 1555911007 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | x=int(input())
a=x//3600
b=(x-x//3600)//60
c=x-{(x-x//3600)//60}
print(a, ':', b, ':', c, sep='')
| Traceback (most recent call last):
File "/tmp/tmpfs7qt_gj/tmp4lprvwwl.py", line 1, in <module>
x=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s541906340 | p02390 | u093488647 | 1555995246 | Python | Python3 | py | Runtime Error | 0 | 0 | 168 | input = int(input())
hour = math.floor(input/3600)
input -= hour*3600
min = math.floor(input/60)
input -= min*60
sec = math.floor(input)
print(hour+":"+min+":"sec)
| File "/tmp/tmpeq38qao0/tmp3d616944.py", line 11
print(hour+":"+min+":"sec)
^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s841191823 | p02390 | u356022548 | 1556157546 | Python | Python3 | py | Runtime Error | 0 | 0 | 170 | S = float(input("Input seconds: "))
S = S % (24 * 3600)
hour = S // 3600
S %= 3600
minutes = time // 60
S %= 60
seconds = S
print("%d:%d:%d" % (hour, minutes, seconds))
| Traceback (most recent call last):
File "/tmp/tmpc05go4dh/tmp4_k6jpcj.py", line 1, in <module>
S = float(input("Input seconds: "))
^^^^^^^^^^^^^^^^^^^^^^^^
EOFError: EOF when reading a line
| Input seconds: |
s704137045 | p02390 | u356022548 | 1556157558 | Python | Python3 | py | Runtime Error | 0 | 0 | 169 | S = float(input("Input seconds: "))
S = S % (24 * 3600)
hour = S // 3600
S %= 3600
minutes = time // 60
S %= 60
seconds = S
print("%d:%d:%d" % (hour, minutes, seconds))
| Traceback (most recent call last):
File "/tmp/tmp9pq6s3_0/tmpcbgv42zr.py", line 1, in <module>
S = float(input("Input seconds: "))
^^^^^^^^^^^^^^^^^^^^^^^^
EOFError: EOF when reading a line
| Input seconds: |
s784986398 | p02390 | u585773649 | 1556246215 | Python | Python3 | py | Runtime Error | 0 | 0 | 280 | #1 min = 60
#1 hour = 60 * 60 = 3600
#1 day = 60 * 60 * 24 = 86400
x=input('enter a positive integer: ')
t=int(x)
hour= (t-(day*86400))//3600
minit= (t - ((day*86400) + (hour*3600)))//60
seconds= t - ((day*86400) + (hour*3600) + (minit*60))
print(hour,minit,seconds, sep=':')
| Traceback (most recent call last):
File "/tmp/tmp2lu1t7q1/tmpklk2k08p.py", line 5, in <module>
x=input('enter a positive integer: ')
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
EOFError: EOF when reading a line
| enter a positive integer: |
s351201940 | p02390 | u585773649 | 1556246246 | Python | Python3 | py | Runtime Error | 0 | 0 | 214 |
x=input('enter a positive integer: ')
t=int(x)
hour= (t-(day*86400))//3600
minit= (t - ((day*86400) + (hour*3600)))//60
seconds= t - ((day*86400) + (hour*3600) + (minit*60))
print(hour,minit,seconds, sep=':')
| Traceback (most recent call last):
File "/tmp/tmpz1ildx06/tmpv4nqqz2v.py", line 3, in <module>
x=input('enter a positive integer: ')
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
EOFError: EOF when reading a line
| enter a positive integer: |
s810654135 | p02390 | u585773649 | 1556246882 | Python | Python3 | py | Runtime Error | 0 | 0 | 190 | x= int(input())
t=int(x)
hour= (t-(day*86400))//3600
minit= (t - ((day*86400) + (hour*3600)))//60
seconds= t - ((day*86400) + (hour*3600) + (minit*60))
print(hour,minit,seconds, sep=':')
| Traceback (most recent call last):
File "/tmp/tmpnu4d70x_/tmpjf5xga7e.py", line 1, in <module>
x= int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s338618038 | p02390 | u327386274 | 1556360198 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | a= map(int,input().split())
print(a//3600+':'+(a%3600)//60+':'+(a%3600)%60)
| Traceback (most recent call last):
File "/tmp/tmpzuao0vtz/tmp0vkdw3lf.py", line 1, in <module>
a= map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s160638693 | p02390 | u327386274 | 1556360215 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | a= map(int,input())
print(a//3600+':'+(a%3600)//60+':'+(a%3600)%60)
| Traceback (most recent call last):
File "/tmp/tmpzneu2c34/tmpxkt98kj3.py", line 1, in <module>
a= map(int,input())
^^^^^^^
EOFError: EOF when reading a line
| |
s376070233 | p02390 | u327386274 | 1556360230 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | a= input()
print(a//3600+':'+(a%3600)//60+':'+(a%3600)%60)
| Traceback (most recent call last):
File "/tmp/tmppu8b0v_t/tmphb2o1ii_.py", line 1, in <module>
a= input()
^^^^^^^
EOFError: EOF when reading a line
| |
s527529088 | p02390 | u327386274 | 1556360298 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a= int(input())
print(a//3600+':'+(a%3600)//60+':'+(a%3600)%60)
| Traceback (most recent call last):
File "/tmp/tmppwig6xca/tmpntzdjkx5.py", line 1, in <module>
a= int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s467095779 | p02390 | u327386274 | 1556360438 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | a= int(input())
h = a//3600
m = (a%3600)//60
s = (a%3600)%60
print( h +':'+ m +':'+ s)
| Traceback (most recent call last):
File "/tmp/tmpfu8w1ul2/tmpn4rn3k5l.py", line 1, in <module>
a= int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s528957896 | p02390 | u610816226 | 1556623343 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | S = int(input())
h = S // 3600
m = (S % 3600) // 60
s = (S % 3600) % 60
print(':'.join[h, m, s])
| Traceback (most recent call last):
File "/tmp/tmpbat5adv2/tmp026bacxl.py", line 1, in <module>
S = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s937969722 | p02390 | u777181309 | 1556682215 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | t = int(input())
h = t//3600
m = (t%3600)//60
s = t - h*3600 - m*60
print(h+':'+m+':'+s)
| Traceback (most recent call last):
File "/tmp/tmpx5mdyzv8/tmpkon3tf0y.py", line 1, in <module>
t = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s993843893 | p02390 | u773889679 | 1556788432 | Python | Python3 | py | Runtime Error | 0 | 0 | 549 | #include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <string>
#include <sstream>
#include <complex>
#include <vector>
#include <list>
#include <queue>
#include <deque>
#include <stack>
#include <map>
#include <set>
using namespace std;
typedef long long unsigned int ll;
#define EPS (1e-7)
#define INF (1e9)
#define PI (acos(-1))
int main() {
int s;
cin >> s;
int a,b,c;
a = s / 3600;
b = (s - a * 3600) / 60;
c = s % 60;
cout << a << ":" << b << ":" << c << endl;
return 0;
}
| File "/tmp/tmpkbpft_4n/tmp0fe5dgd0.py", line 16
using namespace std;
^^^^^^^^^
SyntaxError: invalid syntax
| |
s751052872 | p02390 | u773889679 | 1556788432 | Python | Python3 | py | Runtime Error | 0 | 0 | 549 | #include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <string>
#include <sstream>
#include <complex>
#include <vector>
#include <list>
#include <queue>
#include <deque>
#include <stack>
#include <map>
#include <set>
using namespace std;
typedef long long unsigned int ll;
#define EPS (1e-7)
#define INF (1e9)
#define PI (acos(-1))
int main() {
int s;
cin >> s;
int a,b,c;
a = s / 3600;
b = (s - a * 3600) / 60;
c = s % 60;
cout << a << ":" << b << ":" << c << endl;
return 0;
}
| File "/tmp/tmp56w34kni/tmpdqgsqkou.py", line 16
using namespace std;
^^^^^^^^^
SyntaxError: invalid syntax
| |
s573618063 | p02390 | u762654710 | 1558939836 | Python | Python | py | Runtime Error | 0 | 0 | 46 | x=int(input())
print(x//3600 a%3600//60 x%60)
| File "/tmp/tmp1dw24aa1/tmpmq_c4agg.py", line 2
print(x//3600 a%3600//60 x%60)
^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s973100218 | p02390 | u762654710 | 1558939948 | Python | Python | py | Runtime Error | 0 | 0 | 46 | x=int(input())
print(x//3600:a%3600//60:x%60)
| File "/tmp/tmprm3s4rk7/tmpegvxo7n3.py", line 2
print(x//3600:a%3600//60:x%60)
^
SyntaxError: invalid syntax
| |
s701690808 | p02390 | u762654710 | 1558940127 | Python | Python | py | Runtime Error | 0 | 0 | 54 | x=int(input())
print(x//3600,x%3600//60,x%60,sep=':')
| Traceback (most recent call last):
File "/tmp/tmphv9p8u8d/tmp45jt0hx2.py", line 1, in <module>
x=int(input())
^^^^^^^
EOFError: EOF when reading a line
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.