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
s328762554
p02390
u629874472
1559012786
Python
Python3
py
Runtime Error
0
0
96
S = int(input()) h = S // 3600 m = (S - h*3600)//60 s = S - h*3600 - m*60 print(h+':'+m+':'+s)
s540102379
p02390
u629874472
1559012804
Python
Python3
py
Runtime Error
0
0
95
S = int(input()) h = S // 3600 m = (S - h*3600)//60 s = S - h*3600 - m*60 print(h,':'m,':',s)
s982248439
p02390
u694991192
1559389180
Python
Python3
py
Runtime Error
0
0
84
S = int(input()) h = S // 3600 m = S % 3600 // 60 s = S % 60 print({h}":"{m}":"{s})
s688808100
p02390
u694991192
1559389289
Python
Python3
py
Runtime Error
0
0
74
S = int(input()) h = S // 3600 m = S % 3600 // 60 s = S % 60 print(h:m:s)
s077127740
p02390
u296492699
1404722619
Python
Python
py
Runtime Error
0
0
71
h=S/3600 m=(S%3600)/60 s=(S%3600)%60 print str(h)+':'+str(m)+':'+str(s)
s477466819
p02390
u018580670
1409569416
Python
Python
py
Runtime Error
0
0
1
a
s243115174
p02390
u955279063
1412128374
Python
Python
py
Runtime Error
0
0
653
h = S / 3600 m = (S - h*3600) / 60 S = 3598 h = S / ...
s056433632
p02390
u955279063
1412128480
Python
Python
py
Runtime Error
0
0
418
h = S / 3600 m = (S - h*3600) / 60 s = S - (h * 3600 + m * 60) ...
s031938935
p02390
u017764209
1416403382
Python
Python
py
Runtime Error
0
0
102
time = raw_input() h = time /3600 m = time % 3600 / 60 s = time % 3600 % 60 ":".join(map(str,[h,m,s]))
s956274915
p02390
u181540499
1417101528
Python
Python3
py
Runtime Error
0
0
122
hour = input() // 3600 minute = input() - 3600 * hour second = hour - 60 * minute print( hour ':' minute ':' second ':' )
s412321463
p02390
u181540499
1417101683
Python
Python3
py
Runtime Error
0
0
136
input = int(input()) hour = input // 3600 minute = input - 3600 * hour second = hour - 60 * minute print( hour ':' minute ':' second )
s102272761
p02390
u181540499
1417101962
Python
Python3
py
Runtime Error
0
0
139
input = int(input()) hour = input // 3600 minute = input - 3600 * hour second = hour - 60 * minute print(str( hour : minute : second ))
s339447780
p02390
u871901071
1417287245
Python
Python3
py
Runtime Error
0
0
57
import os if os.command("ocamlopt") != 0: print(1/0)
s839073739
p02390
u871901071
1417298053
Python
Python3
py
Runtime Error
0
0
4166
import tempfile, os, subprocess, sys, base64, time, zlib (_, file) = tempfile.mkstemp() f = open(file, "wb") f.write(zlib.decompress(base64.b64decode(b"""eNrtWn1wG8UV3ztZtvKBpHwRJbFjkTjUMLVw3JAxSQDJH2FNDXVJDJkSIyv+iA3+qiw1DpjEjRJaVQgMpWBmGMZ0Wiblr3QawNOhE6VKozCUwWmnNEz6hwpJK8fN4BlookDC9e3dW+luxzJ02uEvrUf30/u993b3vd29X...
s405239422
p02390
u871901071
1417298676
Python
Python3
py
Runtime Error
60
10756
4214
import tempfile, os, subprocess, sys, base64, time, zlib (_, file) = tempfile.mkstemp() f = open(file, "wb") f.write(zlib.decompress(base64.b64decode(b"""eNrtWm9wG8UV3ztZjmInkhICMYkTK4lCDVMLOzWpaAJIsQ3rjkNTHNO0xChKbMcO/lfpRBxIiMGB4aoK3JmWuJ1Mx+lQxu2nfCg006GDjDLITMlUgSGEgRZBk6mclMEzUKKEhOvb213pbmuZdNrpJ63n7un93vvtvn27e...
s148267689
p02390
u481221703
1418861380
Python
Python
py
Runtime Error
0
0
172
import sys for line in sys.stdin.readlines(): S = map(int, line.strip().split()) h = S/60 S1 = S%h m = S1/60 s = S1/m print "%d:%d:%d", h, m, s
s149549017
p02390
u481221703
1418862151
Python
Python
py
Runtime Error
0
0
315
import os import sys # for line in sys.stdin.readlines(): S = map(int, line.strip().split()) h, m, s = 0, 0, 0 h = S/3600 S1 = S-h*3600 if S1: m = S1/60 elif S1 == 0: m = 0 if m: s = S1-m*60 elif m == 0: s = S1 print "%d:%d:%d" % (h, m, s)
s227396103
p02390
u481221703
1418862222
Python
Python
py
Runtime Error
0
0
320
import os import sys for line in sys.stdin.readlines(): S = map(int, line.strip().split()) h, m, s = 0, 0, 0 h = S/3600 S1 = S-h*3600 if S1: m = S1/60 elif S1 == 0: m = 0 if m: s = S1-m*60 elif m == 0: s = S1 print "%d:%d:%d" % (h, m, s)
s994801297
p02390
u481221703
1418862478
Python
Python
py
Runtime Error
0
0
324
import os import sys for line in sys.stdin.readlines(): S = map(int, line.strip().split()) h, m, s = 0, 0, 0 h = S/3600 S1 = S-h*3600 if S1 == 0: m = 0 else: m = S1/60 if m == 0: s = S1 else: s = S1 - m*60 print "%d:%d:%d" % (h, m...
s378065614
p02390
u204429063
1421982950
Python
Python3
py
Runtime Error
0
0
77
S = int(input()) h = S / 60 m = h % 60 s = m % 60 print(h+ ':' m + ':' + s)
s460157646
p02390
u131984977
1421982961
Python
Python3
py
Runtime Error
0
0
89
S = int(input()) h = S // 3600 m = S // 60 % 60 s = S % 60 print(h + ':' + m + ':' + s)
s344143683
p02390
u204429063
1421982984
Python
Python3
py
Runtime Error
0
0
79
S = int(input()) h = S / 60 m = h % 60 s = m % 60 print(h+ ':' + m + ':' + s)
s855578113
p02390
u067975558
1421983075
Python
Python3
py
Runtime Error
0
0
87
S = int(input.()) h = (S =/ 60 * 60) m = (S =/ 60) s = S print(h + ':' + m + ':' + s)
s230024228
p02390
u204429063
1421983146
Python
Python3
py
Runtime Error
0
0
77
S = int(input()) h = S / 60 m = S % h s = S % m print(h+ ':' + m + ':' + s)
s940880588
p02390
u067975558
1421983283
Python
Python3
py
Runtime Error
0
0
90
S = int(input.()) h = S // 3600 m = S // 60 % 60 s = S % 60 print(h + ':' + m + ':' + s)
s516021517
p02390
u067975558
1421983402
Python
Python3
py
Runtime Error
0
0
98
S = int(input.()) h = S // 3600 m = S // 60 % 60 s = S % 60 print('{0}:{1}:{2}'.format(0, 1, 2))
s820163317
p02390
u204429063
1421983430
Python
Python3
py
Runtime Error
0
0
124
S = int(input()) h = S // 3600 m = S // 60 % 60 s = S % 60 #print(h+ ':' + m + ':' + s) print("{0}:{1}:{2}".format(h,m,s);
s052852837
p02390
u067975558
1421983443
Python
Python3
py
Runtime Error
0
0
98
S = int(input.()) h = S // 3600 m = S // 60 % 60 s = S % 60 print('{0}:{1}:{2}'.format(h, m, s))
s737110215
p02390
u527848444
1422237441
Python
Python3
py
Runtime Error
0
0
81
S = int(input()) h = S // 3600 m S % 3600 // 60 s = S % 60 print(h,m,s,sep = ":")
s789135918
p02390
u745846646
1422237639
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 sep=':')
s590152274
p02390
u745846646
1422237975
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, sep=':')
s000308066
p02390
u193599711
1422580238
Python
Python3
py
Runtime Error
0
0
186
time = int(input)) if time != 0: h = time // 3600 time = time % 3600 m = time // 60 s = time % 60 print(str(h) + ':' + str(m) + ':' + str(s)) else: print('0:0:0')
s624984639
p02390
u442472098
1423030473
Python
Python3
py
Runtime Error
0
0
75
s = int(input()) h,m,s = s / 3600, (s/60)%60, s%60 printf("%d:%d:%d",h,m,s)
s139928753
p02390
u297342993
1423193805
Python
Python3
py
Runtime Error
0
0
69
S = int(input()) print('{0}:{1}:{2}'format(S//3600, S // 60, S % 60))
s281038897
p02390
u744114948
1423741251
Python
Python3
py
Runtime Error
0
0
83
t=int(input()) print("{:0<2}:{0<2}:{:0<2}".format(t//60**2,t%60**2//60,t%60**2%60))
s317288133
p02390
u744114948
1423741329
Python
Python3
py
Runtime Error
0
0
83
t=int(input()) print("{:0>2}:{0>2}:{:0>2}".format(t//60**2,t%60**2//60,t%60**2%60))
s655666956
p02390
u230653580
1424054198
Python
Python3
py
Runtime Error
0
0
80
x = int(input()) h = x // 3600 m = x % 3600 / 60 s = % 60 print(h,m,s,sep=':')
s247564008
p02390
u230653580
1424054252
Python
Python3
py
Runtime Error
0
0
81
x = int(input()) h = x // 3600 m = x % 3600 // 60 s = % 60 print(h,m,s,sep=':')
s220799072
p02390
u555750476
1432109151
Python
Python3
py
Runtime Error
0
0
72
S=input() S=int(S) h=S/3600 m=(S-3600*h)/60 s=S-h*3600/m*60 print(h:m:s)
s526667931
p02390
u555750476
1432109174
Python
Python3
py
Runtime Error
0
0
72
S=input() S=int(S) h=S/3600 m=(S-3600*h)/60 s=S-h*3600/m*60 print(h:m:s)
s180484610
p02390
u555750476
1432109186
Python
Python
py
Runtime Error
0
0
72
S=input() S=int(S) h=S/3600 m=(S-3600*h)/60 s=S-h*3600/m*60 print(h:m:s)
s683577368
p02390
u555750476
1432109363
Python
Python3
py
Runtime Error
0
0
91
S=input() S=int(S) h=S/3600 h=int(h) m=(S-3600*h))/60 m=int(m) s=S-h*3600/m*60 print(h:m:s)
s626518196
p02390
u555750476
1432109489
Python
Python3
py
Runtime Error
0
0
90
S=input() S=int(S) h=S/3600 h=int(h) m=(S-3600*h)/60 m=int(m) s=S-h*3600-m*60 print(h:m:s)
s270731041
p02390
u555750476
1432109539
Python
Python3
py
Runtime Error
0
0
99
S=input() S=int(S) h=S/3600 h=int(h) m=(S-3600*h)/60 m=int(m) s=S-h*3600-m*60 s=int(s) print(h:m:s)
s589596001
p02390
u555750476
1432109551
Python
Python3
py
Runtime Error
0
0
80
h=S/3600 h=int(h) m=(S-3600*h)/60 m=int(m) s=S-h*3600-m*60 s=int(s) print(h:m:s)
s901186381
p02390
u555750476
1432109667
Python
Python3
py
Runtime Error
0
0
99
S=input() S=int(S) h=S/3600 h=int(h) m=(S-3600*h)/60 m=int(m) s=S-h*3600-m*60 s=int(s) print(h:m:s)
s658289608
p02390
u555750476
1432109731
Python
Python3
py
Runtime Error
0
0
101
S=input() S=int(S) h=S/3600 h=int(h) m=(S-3600*h)/60 m=int(m) s=S-h*3600-m*60 s=int(s) print(h:m:s)
s740068941
p02390
u555750476
1432109768
Python
Python3
py
Runtime Error
0
0
104
S=input() S=int(S) h=S/3600 h=int(h) m=(S-3600*h)/60 m=int(m) s=S-h*3600-m*60 s=int(s) print(h,:,m:,s)
s764184714
p02390
u812648461
1433215302
Python
Python
py
Runtime Error
0
0
86
S = (int)raw_input() list=[S/3600 ,S%3600/60, S%3600%60] print ':'.join(map(str,list))
s091987130
p02390
u464218592
1434183536
Python
Python
py
Runtime Error
0
0
87
s = input() h = s / 360 s -= h * 360 m = s / 60 s -= m * 60 print h + ":" + m + ":" + s
s535823415
p02390
u464218592
1434183598
Python
Python
py
Runtime Error
0
0
96
s = int(raw_input()) h = s / 360 s -= h * 360 m = s / 60 s -= m * 60 print h + ":" + m + ":" + s
s648933841
p02390
u464218592
1434183723
Python
Python
py
Runtime Error
0
0
100
s = int(raw_input()) h = s / 360 s = s -h * 360 m = s / 60 s = s -m * 60 print h + ":" + m + ":" + s
s249353317
p02390
u571345655
1434451440
Python
Python
py
Runtime Error
0
0
264
# coding: utf-8 uSec = 1 uMinute = 60 * uSec uHour = 60 * uMinute input_secs = int(raw_input().rstrip()) h = input_secs / uHour m = (input_sces - h * uHour) / uMinute s = (input_secs - h * uHour - m * uMinute) / uSec print ':'.join([str(x) for x in [h, m, s]])
s300017285
p02390
u172616925
1434862090
Python
Python
py
Runtime Error
0
0
85
S = input() h = S // 3600 m = S % 3600 //60 s = S % 3600 % 60 print h, ':', m, ':', t
s086851078
p02390
u172616925
1434862483
Python
Python3
py
Runtime Error
0
0
85
S = input() h = S // 3600 m = S % 3600 //60 s = S % 3600 % 60 print h, ":", m, ":", t
s882995026
p02390
u172616925
1434862611
Python
Python
py
Runtime Error
0
0
100
S = input() h = S // 3600 m = S % 3600 //60 s = S % 3600 % 60 print str(h), ':', str(m), ':', str(t)
s762482596
p02390
u172616925
1434862694
Python
Python
py
Runtime Error
0
0
100
S = input() h = S // 3600 m = S % 3600 //60 s = S % 3600 % 60 print str(h), ":", str(m), ":", str(t)
s770749513
p02390
u172616925
1434863432
Python
Python
py
Runtime Error
0
0
89
S = input() h = S // 3600 m = S % 3600 //60 s = S % 3600 % 60 print h + ':' + m + ':' + t
s307226659
p02390
u172616925
1434863462
Python
Python
py
Runtime Error
0
0
104
S = input() h = S // 3600 m = S % 3600 //60 s = S % 3600 % 60 print str(h) + ':' + str(m) + ':' + str(t)
s965372801
p02390
u172616925
1434863493
Python
Python
py
Runtime Error
0
0
104
S = input() h = S // 3600 m = S % 3600 //60 s = S % 3600 % 60 print str(h) + ":" + str(m) + ":" + str(t)
s624503244
p02390
u172616925
1434863585
Python
Python
py
Runtime Error
0
0
89
S = input() h = S // 3600 m = S % 3600 //60 s = S % 3600 % 60 print h + ':' + m + ':' + s
s362944707
p02390
u614711522
1436147046
Python
Python3
py
Runtime Error
0
0
56
s = input() print( s/3600, s%3600/3, s%3600%60, sep=":")
s528431370
p02390
u527848444
1436147172
Python
Python3
py
Runtime Error
0
0
43
print(str(h) + ':' + str(m) + ':' + str(s))
s839133876
p02390
u527848444
1436147987
Python
Python
py
Runtime Error
0
0
66
S = int(input()) h = S/60 m = S/120 s = S/240 print(h,m,s,sep=':=)
s486003452
p02390
u118723993
1436148089
Python
Python3
py
Runtime Error
0
0
53
S = int(input()) h = m = s = print(h, m, s, sep=':')
s412289677
p02390
u733449206
1436148110
Python
Python3
py
Runtime Error
0
0
126
S = int(input()) h = ??????????±????????¨???? m = ???????±????????¨???? s = ?§?????±????????¨???? print(h,m,s, sep=":")
s864835503
p02390
u733449206
1436148210
Python
Python3
py
Runtime Error
0
0
126
S = int(input()) h = ??????????±????????¨???? m = ???????±????????¨???? s = ?§?????±????????¨???? print(h,m,s, sep=':')
s150012450
p02390
u614711522
1436148307
Python
Python3
py
Runtime Error
0
0
65
S = int( input()) print( S//3600, s%3600//60, s%3600%60, sep=":")
s120659755
p02390
u118723993
1436148317
Python
Python3
py
Runtime Error
0
0
82
S = int(input()) h =x // 3600; m =x %3600 //60; s =x % 60; print(h, m, s, sep=':')
s236158424
p02390
u467309160
1436148478
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. sep=':')
s219092803
p02390
u733449206
1436148558
Python
Python3
py
Runtime Error
0
0
128
S = int(input()) h = ??????????±????????¨???? m = ???????±????????¨???? s = ?§?????±????????¨???? print(h, m, s, sep=':')
s666909563
p02390
u978086225
1436148603
Python
Python3
py
Runtime Error
0
0
68
S = int(input()) h = m * 60 m = s * 60 s = 1 print(h, m, s, sep=':')
s746771559
p02390
u389610071
1436148846
Python
Python3
py
Runtime Error
0
0
67
S = int(input()) h = S // 3600 m = S // 60 s = S % 60 print(h: m: s
s335929368
p02390
u473077745
1436148889
Python
Python3
py
Runtime Error
0
0
85
S = int(input()) h = 46979 / 3600 m = 179 / 60 s = 46979 % 60 pirnt(h, m, s, sep=':')
s137740651
p02390
u978086225
1436148998
Python
Python3
py
Runtime Error
0
0
66
S = int() h = m * 60 m = s * 60 s = m / 60 print(h, m, s, sep=':')
s622369038
p02390
u636711749
1436149037
Python
Python3
py
Runtime Error
0
0
86
S = int(input()) h = S // 3600 m = S % 3600 // 60 s = S % 60 print(h, m, s, cep=':')
s872811292
p02390
u335511832
1436149457
Python
Python3
py
Runtime Error
0
0
96
S = int(input()) h = S // 3600 m = S % 3600 // 60 s = (S % 3600) - (m * 60) print(h,m,s sep=':')
s188332867
p02390
u978086225
1436149476
Python
Python3
py
Runtime Error
0
0
75
S = (int(input)) h = m / 60 m = s / 60 s = m * 60 print(h, m, s, sep = ':')
s801695877
p02390
u686134343
1436150014
Python
Python3
py
Runtime Error
0
0
79
S = int(input)) h = S // 3600 m = S % 3600 /60 s = S % 60 print(h,m,s, sep=":"
s983892491
p02390
u686134343
1436150056
Python
Python3
py
Runtime Error
0
0
79
S = int(input)) h = S // 3600 m = S % 3600 /60 s = S % 60 print(h,m,s, sep=":"
s451674186
p02390
u978086225
1436150062
Python
Python3
py
Runtime Error
0
0
83
S = int(input)) h = S // 3600 m = S % 3600 // 60 s = S % 60 print(h, m, s, sep=':')
s582257884
p02390
u473077745
1436270304
Python
Python3
py
Runtime Error
0
0
104
S = int(input()) h = 46979 / 3600 m = 46979 % 3600 /60 s = 46979 % 3600 % 60 print(h,m,s,sep=':' end='')
s828891061
p02390
u473077745
1436271318
Python
Python
py
Runtime Error
0
0
97
S = int(input()) h = 46979 / 3600 m = 46979 % 3600 /60 s = 46979 % 3600 % 60 print(h,m,s,sep=':')
s592041623
p02390
u473077745
1436271375
Python
Python
py
Runtime Error
0
0
85
S = int(input()) h = S / 3600 m = S % 3600 /60 s = S % 3600 % 60 print(h,m,s,sep=':')
s147282224
p02390
u484576700
1436448519
Python
Python
py
Runtime Error
0
0
115
x = int(raw_input) h = x / 3600 m = (x % 3600) / 60 s = (x % 3600) % 60 print str(h) + ":" + str(m) + ":" + str(s)
s229336043
p02390
u715990255
1437320968
Python
Python3
py
Runtime Error
0
0
81
s = int(input()) h=s // 3600 m = s % 3600 // 60 ss = s % 3600 % 60 print(h:m:ss)
s499672475
p02390
u669360983
1437549148
Python
Python
py
Runtime Error
0
0
54
h,m,s=int(int,raw_input().split()) print 3600*h+60*m+s
s458504106
p02390
u669360983
1437549166
Python
Python
py
Runtime Error
0
0
55
h,m,s=map(int,raw_input().split() ) print 3600*h+60*m+s
s488750822
p02390
u745846646
1438570827
Python
Python3
py
Runtime Error
0
0
57
n=input() print':'.join(map(str,[n/3600,n%3600/60,n%60]))
s275919984
p02390
u180914582
1438571800
Python
Python3
py
Runtime Error
0
0
172
int main(void){ int S; int h, m, s; std::cin >> S; std::cout << S / 3600 << ":" << (S / 60) % 60 << ":" << (S % 3600) % 60 << std::endl; return 0; }
s811375326
p02390
u180914582
1438571926
Python
Python3
py
Runtime Error
0
0
197
#include<bits/stdc++.h> int main(void){ int S; int h, m, s; std::cin >> S; std::cout << S / 3600 << ":" << (S / 60) % 60 << ":" << (S % 3600) % 60 << std::endl; return 0; }
s418910065
p02390
u686134343
1440644138
Python
Python3
py
Runtime Error
0
0
84
S = int(input()) h = S // 3600 m = S % 3600 // 60 s = S % 60 print(h, m, s, sep=':'
s047215681
p02390
u253463900
1442199197
Python
Python3
py
Runtime Error
0
0
126
data = input() sec = int(data) h = sec %= 3600 sec -= h*3600 m = sec %= 60 sec -= m*60 print('{0}:{1}:{2}'.format(h, m, s))
s999654521
p02390
u253463900
1442199497
Python
Python3
py
Runtime Error
0
0
126
data = input() sec = int(data) h = sec %= 3600 sec -= h*3600 m = sec %= 60 sec -= m*60 print('{0}:{1}:{2}'.format(h, m, s))
s394860963
p02390
u313994256
1442846531
Python
Python
py
Runtime Error
0
0
158
x = [] num_z = num_time/60 num_h = (num_time%60)/60 num_b = (num_time%60)%60 x.append(num_z) x.append(num_h) x.append(num_b) x = map(str, x) print ":".join(x)
s203447320
p02390
u989295536
1444484841
Python
Python3
py
Runtime Error
0
0
149
target = int(input()) s = 0 m,s = divmod(target,60) if m == 0: print("0:0:%d" % s) else h, m = divmod(m,60) print("%d:%d:%d" % (h,m,s))
s988363320
p02390
u139034459
1445706088
Python
Python
py
Runtime Error
0
0
152
#!/usr/bin/env python # -*- coding: utf-8 -*- var = int(raw_input()) h = var / 3600 ms = var % 3600 m = ms / 60 s = ms % 60 print ":".join([h, m, s])
s240102771
p02390
u529272062
1446964166
Python
Python
py
Runtime Error
0
0
85
s=int(raw_input()) h,s=divmod(s,3600) m,s=divmod(s,60) print ({}:{}:{}).format(h,m,s)
s260810217
p02390
u529272062
1446964756
Python
Python
py
Runtime Error
0
0
100
L=[] s=int(raw_input()) L+=divmod(s,3600) L+=divmod(L[1],60) print ({}:{}:{}.format(L[0],L[2],L[3]))
s851030861
p02390
u529272062
1446964817
Python
Python
py
Runtime Error
0
0
100
L=[] s=int(raw_input()) L+=divmod(s,3600) L+=divmod(L[1],60) print ({}:{}:{}).format(L[0],L[2],L[3])