s_id
stringlengths
10
10
p_id
stringlengths
6
6
u_id
stringlengths
10
10
date
stringlengths
10
10
language
stringclasses
1 value
original_language
stringclasses
11 values
filename_ext
stringclasses
1 value
status
stringclasses
1 value
cpu_time
stringlengths
1
5
memory
stringlengths
1
7
code_size
stringlengths
1
6
code
stringlengths
1
539k
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)
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)
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)
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)
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))
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))
s903527910
p02389
u987236471
1530445660
Python
Python
py
Runtime Error
0
0
54
a = int(input()) b = int(input()) print(c*d 2*(c+d))
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))
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))
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)
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)
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)
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))
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()
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))
s587724937
p02389
u231998559
1386548646
Python
Python
py
Runtime Error
0
0
49
a, b = input.split() print str(a*b), str((a+b)*2)
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)
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)
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)
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
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
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
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 ;
s995786307
p02389
u703446356
1398964760
Python
Python
py
Runtime Error
0
0
51
(a b) = map(int, raw_input().split()) print (a+b)*2
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)
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)
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)
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))
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":")
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)
s086732785
p02390
u303952184
1531839605
Python
Python3
py
Runtime Error
0
0
62
S = int(input()) print (S//3600, + ":" + S//60, + ":" + S%60)
s868109129
p02390
u303952184
1531839624
Python
Python3
py
Runtime Error
0
0
44
S = int(input()) print (S//3600:S//60:S%60)
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)
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))
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))
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)
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)
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)
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))
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=':')
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=':')
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=':')
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))
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))
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))
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))
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))
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))
s368293940
p02390
u266788078
1545315143
Python
Python3
py
Runtime Error
0
0
57
A = int(input()) print(A/3600,":",(A%3600)/60,":",A%60))
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))
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)
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(':')
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)
s867163406
p02390
u962909487
1545812688
Python
Python3
py
Runtime Error
0
0
78
sec = int(input()) print(sec//3600, ':', (sec//3600)%60, ':', sec%60, sep' ')
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))
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))
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))
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)
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)
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))
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)
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)
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)
s916004154
p02390
u967268722
1555767519
Python
Python3
py
Runtime Error
0
0
62
t=int(input) print('{}:{}:{}'.format(t//3600,t//60%60,t%60))
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)
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")
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")
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")
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(:))
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(:))
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(":"))
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})
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(`:`))
s599233259
p02390
u525395303
1555910235
Python
Python3
py
Runtime Error
0
0
3
kl
s144766229
p02390
u525395303
1555910357
Python
Python3
py
Runtime Error
0
0
3
kl
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)
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)
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='')
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='')
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='')
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='')
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='')
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)
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))
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))
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=':')
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=':')
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=':')
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)
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)
s376070233
p02390
u327386274
1556360230
Python
Python3
py
Runtime Error
0
0
59
a= input() print(a//3600+':'+(a%3600)//60+':'+(a%3600)%60)
s527529088
p02390
u327386274
1556360298
Python
Python3
py
Runtime Error
0
0
64
a= int(input()) print(a//3600+':'+(a%3600)//60+':'+(a%3600)%60)
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)
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])
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)
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; }
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; }
s573618063
p02390
u762654710
1558939836
Python
Python
py
Runtime Error
0
0
46
x=int(input()) print(x//3600 a%3600//60 x%60)
s973100218
p02390
u762654710
1558939948
Python
Python
py
Runtime Error
0
0
46
x=int(input()) print(x//3600:a%3600//60:x%60)
s701690808
p02390
u762654710
1558940127
Python
Python
py
Runtime Error
0
0
54
x=int(input()) print(x//3600,x%3600//60,x%60,sep=':')