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
s155419720
p02390
u744121389
1502589786
Python
Python3
py
Runtime Error
0
0
93
S = int(input()) s = S % 3600 h = S / 3600 m = S - (h * 60) - s print(str(h,m,s,sep=":"))
s458753296
p02390
u117053676
1502798255
Python
Python3
py
Runtime Error
0
0
121
in_sec = int(input()) sec = in_sec % 60 min = (in_sec // 60) % 60 hour = (in_sec // 3600 ) print(hour,min,sec,sep(":"))
s968969972
p02390
u744121389
1502851816
Python
Python3
py
Runtime Error
0
0
118
S = int(input()) h = intS // 3600 m = S % 3600 // 60 s = S % 3600 % 60 print(str(h) + ':' + str(m) + ':' + str(s))
s354859604
p02390
u283452598
1503038965
Python
Python3
py
Runtime Error
0
0
124
seconds=int(input()) hour, amari = divmod(seconds,3600) minute, second = divmod(amari,60) print(hour+":"+minute+":"+second)
s746071791
p02390
u450020188
1503472484
Python
Python3
py
Runtime Error
0
0
134
time = int(input()) hour = time // 3600 minute = (time % 3600) // 60 second = (time % 3600) % 60 print hour,":", minute, ":", second
s554759538
p02390
u096862087
1503479964
Python
Python3
py
Runtime Error
0
0
83
total = (int)input() s = total%3600 m = (total-(s/60))%60 h = total-(s/3600)-(m/60)
s458360944
p02390
u096862087
1503480021
Python
Python3
py
Runtime Error
0
0
118
total = (int)input() s = total%3600 m = (total-(s/60))%60 h = total-(s/3600)-(m/60) print("{0}:{1}:{2}".format(h,m,s))
s299828196
p02390
u096862087
1503480056
Python
Python3
py
Runtime Error
0
0
118
total = (int)input() s = total%3600 m = (total-(s/60))%60 h = total-(s/3600)-(m/60) print("{0}:{1}:{2}".format(h,m,s))
s839909429
p02390
u633333374
1503813535
Python
Python
py
Runtime Error
0
0
88
s = int(input()) a = s / 3600 b = (s - a) / 60 c = s - a - b print a + ":" + b + ":" + c
s559063684
p02390
u132415474
1504517142
Python
Python3
py
Runtime Error
0
0
99
x = int(input()) h, remainder = divmod(x, 60*60) m, s = divmod(remainder, 60) print(f"{h}:{m}:{s}")
s004334025
p02390
u294922877
1504711340
Python
Python3
py
Runtime Error
0
0
67
h,m=divmod(int(input()),3600) m,s=divmod(m,60) print(h+':'+m+':'+s)
s059310817
p02390
u933096856
1504897798
Python
Python3
py
Runtime Error
0
0
115
h,m,s=0,0,int(input()) while s >= 3600: s-=3600 h+=1 while m >= 60: s-=60 m+=1 print(h+':'+m+':'+s)
s657113798
p02390
u933096856
1504897909
Python
Python3
py
Runtime Error
0
0
115
h,m,s=0,0,int(input()) while s >= 3600: s-=3600 h+=1 while s >= 60: s-=60 m+=1 print(h+':'+m+':'+s)
s442595754
p02390
u563181068
1504947192
Python
Python3
py
Runtime Error
0
0
139
a=input() s=int(a) if a<86400 and a>=0: h=int(s/3600) m=int((s-h*3600)/60) s=s-h*3600-m*60 print(h,m,s) else: exit()
s505362283
p02390
u563181068
1504948599
Python
Python3
py
Runtime Error
0
0
159
a=input() s=int(a) if s<86400 and s>=0: h=int(s/3600) m=int((s-h*3600)/60) s=s-h*3600-m*60 print("{0}:{1}:{2}".format(h,m,s)) else: exit(
s098539124
p02390
u362494298
1505050867
Python
Python3
py
Runtime Error
0
0
220
S = int(input()) if S >= 3600: h = S / 3600 m = S % 3600 / 60 s = m % 60 / 60 else if S >= 60: h = 0 m = S / 60 s = m % 60 / 60 else h = 0 m = 0 s = S
s064508474
p02390
u362494298
1505051352
Python
Python3
py
Runtime Error
0
0
80
S = int(input()) h = S//3600 m = S%3600//60 s = S%3600%60 print(h ':' m ':' s)
s336352739
p02390
u088372268
1505482739
Python
Python3
py
Runtime Error
0
0
89
t = input() h = t // 3600 m = (t % 3600) // 60 s = t-3600*h-60*m print(h, ":", m, ":", s)
s089551969
p02390
u088372268
1505484455
Python
Python3
py
Runtime Error
0
0
112
S = int(input()) h = int(S / 3600) m = int((S % 3600) / 60) s = S-3600*h-60*m print(str(h)+":"+str(m)+":"str(s))
s549096256
p02390
u505411588
1507207334
Python
Python3
py
Runtime Error
0
0
98
S = int(input()) h = str(S//3600) M = S%3600 m = str(M//60) s = str(M%60) print(h+":"0+m+":"+s)
s162126616
p02390
u825994660
1507519501
Python
Python3
py
Runtime Error
0
0
76
S = input() print(str(S//3600) + ":" + str(S%3600//60) + ":" str(S%3600%60))
s976840181
p02390
u824030785
1508250332
Python
Python3
py
Runtime Error
0
0
75
S = int(input()) h = S / 3600 m = S / 60 s = S % 60 print(h, m, s, sep = :)
s797111929
p02390
u626266743
1508292325
Python
Python3
py
Runtime Error
0
0
105
S = int(input()) h = S / 3600 m = (S - h * 3600) / 60 s = S - h * 3600 - s * 60 print(h, m, s, sep = ':')
s423202381
p02390
u876635199
1508490894
Python
Python3
py
Runtime Error
0
0
59
S = int(input()) h = 60*60*s m = 60*s s = S print (h:,m:,s)
s018067280
p02390
u876635199
1508490959
Python
Python3
py
Runtime Error
0
0
59
S = int(input()) h = s%60%60 m = s%60 s = S print (h:,m:,s)
s523445975
p02390
u876635199
1508491109
Python
Python3
py
Runtime Error
0
0
56
S = int(input()) s = S m = s%60 h = m%60 print (h:,m:,s)
s853551543
p02390
u876635199
1508491479
Python
Python3
py
Runtime Error
0
0
102
S = int(input()) h = int(S/3600) S = S%3600 m = int(S/60) s = S%60 print (str(h)+":"+str(m)+":"str(s))
s226350860
p02390
u876635199
1508491498
Python
Python3
py
Runtime Error
0
0
101
S = int(input()) h = int(S/3600) S = S%3600 m = int(S/60) s = S%60 print(str(h)+":"+str(m)+":"str(s))
s547720360
p02390
u008204061
1508960363
Python
Python3
py
Runtime Error
0
0
164
import sys t = input() h = 0 m = 0 s = 0 while t >= 3600: t -= 3600 h += 1 while t >= 60 t -= 60 m += 1 s = t print("{0}:{1}:{2}".format(h,m,s))
s191033866
p02390
u008204061
1508960419
Python
Python3
py
Runtime Error
0
0
194
import sys ?? t = int(input()) h = 0 m = 0 s = 0 while t >= 3600: ????????t -= 3600 ????????h += 1 ?? while t >= 60: ????????t -= 60 ????????m += 1 ?? s = t ?? print("{0}:{1}:{2}".format(h,m,s))
s327328884
p02390
u022665025
1509368770
Python
Python
py
Runtime Error
0
0
110
second = input() h = second // 3600 m = second % 3600 // 60 s = second % 60 print("%d : %d : %d " (h, m, s) )
s660801065
p02390
u747709646
1510270465
Python
Python3
py
Runtime Error
0
0
99
S = input() s = S % 60 m = int(S / 60) % 60 h = int(int(S / 60) / 60) print('%d:%d:%d' % (h,m,s))
s438475625
p02390
u553796841
1510305228
Python
Python3
py
Runtime Error
0
0
82
a=input() h=a/3600 m=(a-(h*3600))/60 s=a-(h*3600)-(m*60) print '%d:%d:%d' %(h,m,s)
s298470013
p02390
u725391514
1510316293
Python
Python3
py
Runtime Error
0
0
60
S=int(input()) h=S//3600 m=(S%3600)//60 s=m%60 print(h:m:s)
s606626123
p02390
u422299972
1510324450
Python
Python3
py
Runtime Error
0
0
111
n = int(input()) h = n / 3600 #??? n %= 3600 m = n /60 #??? n %= 60 s = n #?§? print(h + ":" + m + ":" + s)
s351073869
p02390
u422299972
1510324831
Python
Python3
py
Runtime Error
0
0
106
n = input() h = n / 3600 #??? n %= 3600 m = n /60 #??? n %= 60 s = n #?§? print(h + ":" + m + ":" + s)
s873741631
p02390
u187646742
1510495348
Python
Python3
py
Runtime Error
0
0
124
a = int(input()) h = int(a / 3600) m = int(a - h * 3600) / 60 s = int(a - (h * 3600) - (m * 60)) print("%s:%s:%s % (h, m, s)
s135919638
p02390
u187646742
1510495412
Python
Python3
py
Runtime Error
0
0
126
a = int(input()) h = int(a / 3600) m = int((a - h * 3600) / 60) s = int(a - (h * 3600) - (m * 60)) print("%s:%s:%s % (h, m, s)
s236633880
p02390
u187646742
1510495453
Python
Python3
py
Runtime Error
0
0
125
a = int(input()) h = int(a / 3600) m = int(a - h * 3600) / 60 s = int(a - (h * 3600) - (m * 60)) print("%s:%s:%s % (h, m, s))
s043122407
p02390
u889593139
1512101360
Python
Python3
py
Runtime Error
0
0
165
sec_time = int(input()) hour = sec_time // 3600 minutes = sec_time % 3600 // 60 seconds = sec_time % 3600 % 60 time = ':'.join(hour, minutes, seconds) print(time)
s251109455
p02390
u889593139
1512101362
Python
Python3
py
Runtime Error
0
0
165
sec_time = int(input()) hour = sec_time // 3600 minutes = sec_time % 3600 // 60 seconds = sec_time % 3600 % 60 time = ':'.join(hour, minutes, seconds) print(time)
s448539267
p02390
u095097138
1512721247
Python
Python3
py
Runtime Error
0
0
258
import argparse parser = argparse.ArgumentParser(description='Process some integers.') parser.add_argument('n', type=int, action='store') args = parser.parse_args() h = args.n / 3600 n = args.n % 3600 m = n / 60 s = n % 60 print('{}:{}:{}'.format(h,m,s))
s851616307
p02390
u095097138
1512721357
Python
Python3
py
Runtime Error
0
0
273
import argparse parser = argparse.ArgumentParser(description='Process some integers.') parser.add_argument('n', type=int, action='store') args = parser.parse_args() h = args.n / 3600 n = args.n % 3600 m = n / 60 s = n % 60 print('{0:02d}:{0:02d}:{0:02d}'.format(h,m,s))
s792946141
p02390
u095097138
1512721461
Python
Python
py
Runtime Error
0
0
273
import argparse parser = argparse.ArgumentParser(description='Process some integers.') parser.add_argument('n', type=int, action='store') args = parser.parse_args() h = args.n / 3600 n = args.n % 3600 m = n / 60 s = n % 60 print('{0:02d}:{0:02d}:{0:02d}'.format(h,m,s))
s094686697
p02390
u095097138
1512721563
Python
Python3
py
Runtime Error
0
0
283
import argparse parser = argparse.ArgumentParser(description='Process some integers.') parser.add_argument('n', type=int, action='store') args = parser.parse_args() h = int(args.n / 3600) n = args.n % 3600 m = int(n / 60) s = n % 60 print('{0:02d}:{0:02d}:{0:02d}'.format(h,m,s))
s843894297
p02390
u423320231
1513347920
Python
Python3
py
Runtime Error
0
0
92
a = input() x=int(a) h=int(x/3600) m=int((x-h*3600)/60) s=x-h*3600-m*60 print(h+":"+m+":"+s)
s086562503
p02390
u830563109
1513444896
Python
Python3
py
Runtime Error
0
0
52
s = int(input()) m = s / 60 h = m / 60 print(h:m:s)
s976572794
p02390
u830563109
1513444924
Python
Python3
py
Runtime Error
0
0
57
s = int(input()) m = s / 60 h = m / 60 print(h:m:int(s))
s951124991
p02390
u830563109
1513444976
Python
Python3
py
Runtime Error
0
0
45
s = 40020 m = s / 60 h = m / 60 print(h:m:s)
s558684670
p02390
u830563109
1513448880
Python
Python3
py
Runtime Error
0
0
52
s = int(input()) m = s/60 h = m/60 print(h":"m":"s)
s044545213
p02390
u830563109
1513448900
Python
Python3
py
Runtime Error
0
0
57
s = int(input()) m = s/60 h = m/60 print(h":"m":"int(s))
s223329612
p02390
u830563109
1513448985
Python
Python3
py
Runtime Error
0
0
56
s = int(input()) m = s/60 h = m/60 print(h ":" m ":" s)
s809188481
p02390
u830563109
1513449031
Python
Python3
py
Runtime Error
0
0
57
s = int(input()) m = s/60 h = m/60 print(h ":" m ":" s):
s660300604
p02390
u830563109
1513449105
Python
Python3
py
Runtime Error
0
0
57
s = int(input()) m = s/60 h = m/60 print(h,m,s,sep=":"):
s610092352
p02390
u613278035
1513462423
Python
Python3
py
Runtime Error
0
0
187
time = int(input()) h = time/3600 time%3600 m = time/60 s = time%60 print("%d:%d:time = int(input()) h = time/3600 time%=3600 m = time/60 s = time%60 print("%d:%d:%d"%(h,m,s))%d"%(h,m,s))
s701887414
p02390
u301900896
1513825863
Python
Python3
py
Runtime Error
0
0
185
using namespace std; int main() { int s; cin >> s; int h = s / 3600; s -= h * 3600; int m = s / 60; s -= m * 60; cout << h << ":" << m << ":" << s << endl; return 0; }
s619421152
p02390
u801823223
1514383879
Python
Python3
py
Runtime Error
0
0
122
spam = input() s = spam%60 spam -= s m = (spam / 60) % 60 spam -= 60 * m h= spam / 3600 ham = ':'.join(h, m, s) print(ham)
s057104886
p02390
u165141947
1514588864
Python
Python
py
Runtime Error
0
0
117
S = int(raw_input()) h = int(S/3600) m = int((S - 3600 * h)/60) s = S - 3600 * h - 60 * m print h + ":" + m + ":" + s
s462105052
p02390
u841567836
1515047328
Python
Python3
py
Runtime Error
0
0
118
S = input() S = int(S)    h = S//3600 S = S - h * 3600 m = S // 60 s = S - m * 60    print("%d:%d:%d" %(h, m, s))
s242019323
p02390
u841567836
1515047442
Python
Python3
py
Runtime Error
0
0
99
S = input() h = S//3600 S = S - h * 3600 m = S // 60 s = S - m * 60 print("%d:%d:%d" %(h,m,s))
s372687679
p02390
u841567836
1515047520
Python
Python3
py
Runtime Error
0
0
99
S = input() h = S//3600 S = S - h * 3600 m = S // 60 s = S - m * 60 print("%d:%d:%d" %(h,m,s))
s587887650
p02390
u503501082
1515591126
Python
Python3
py
Runtime Error
0
0
103
int_input = int(input()) sys.stdout.write(int_input//(60*60),":",(int_input//60)%60,":",int_input%60)
s236063156
p02390
u503501082
1515591134
Python
Python3
py
Runtime Error
0
0
113
import sys int_input = int(input()) sys.stdout.write(int_input//(60*60),":",(int_input//60)%60,":",int_input%60)
s411168127
p02390
u179070318
1515910923
Python
Python3
py
Runtime Error
0
0
69
S = int(input()) h = S//3600 m = (S%3600)//60 s = S%60 print(h:m:s)
s320807078
p02390
u299257375
1516004898
Python
Python3
py
Runtime Error
0
0
124
sho = int(input()) // 60 amari = int(input()) % 60 h = sho // 60 m = sho % 60 s = amari print("{}:{}:{}".format(h, m, s))
s862375429
p02390
u770698847
1516109587
Python
Python
py
Runtime Error
0
0
191
from dateutil.relativedelta import relativedelta x = int(raw_input()) y = relativedelta(seconds=x) x = "{0.hours:02}:{0.minutes:02}:{0.seconds:02}".format(relativedelta(seconds=x)) print(x)
s193300631
p02390
u770698847
1516109612
Python
Python
py
Runtime Error
0
0
246
from dateutil.relativedelta import relativedelta x = int(raw_input()) y = relativedelta(seconds=x) x = "{0.hours:02}:{0.minutes:02}:{0.seconds:02}".format(relativedelta(seconds=x))#02は二桁になる書式設定、最初の0は引数 print(x)
s900464654
p02390
u770698847
1516109715
Python
Python
py
Runtime Error
0
0
246
from dateutil.relativedelta import relativedelta x = int(raw_input()) y = relativedelta(seconds=x) x = "{0.hours:02}:{0.minutes:02}:{0.seconds:02}".format(relativedelta(seconds=x))#02は二桁になる書式設定、最初の0は引数 print(x)
s642540278
p02390
u770698847
1516109954
Python
Python
py
Runtime Error
0
0
191
from dateutil.relativedelta import relativedelta x = int(raw_input()) y = relativedelta(seconds=x) x = "{0.hours:02}:{0.minutes:02}:{0.seconds:02}".format(relativedelta(seconds=x)) print(x)
s702114749
p02390
u770698847
1516110003
Python
Python
py
Runtime Error
0
0
162
from dateutil.relativedelta import relativedelta x = int(raw_input()) x = "{0.hours:02}:{0.minutes:02}:{0.seconds:02}".format(relativedelta(seconds=x)) print(x)
s706775897
p02390
u770698847
1516110088
Python
Python
py
Runtime Error
0
0
153
from dateutil.relativedelta import relativedelta x = int(raw_input()) x = "{0.hours}:{0.minutes}:{0.seconds}".format(relativedelta(seconds=x)) print(x)
s939752005
p02390
u770698847
1516110147
Python
Python
py
Runtime Error
0
0
103
x = int(raw_input()) x = "{0.hours}:{0.minutes}:{0.seconds}".format(relativedelta(seconds=x)) print(x)
s175016753
p02390
u536089081
1517522431
Python
Python3
py
Runtime Error
0
0
88
sec = int(input()) tmp = [sec // 3600, (sec // 60) % 60, sec % 60] print(':'.join(tmp))
s395365424
p02390
u798565376
1517681469
Python
Python3
py
Runtime Error
0
0
121
input_s = int(input()) h = s / 3600 rest_s = s % 3600 m = rest_s / 60 s = rest_s % 60 print('{}:{}:{}'.format(h, m, s))
s981090839
p02390
u602702913
1518082399
Python
Python3
py
Runtime Error
0
0
79
S=input() h=S//3600 m=(S%3600)//60 s=S-((h*3600)+(m*60)) print(h,':',m,':',s)
s058137856
p02390
u613627875
1518153131
Python
Python3
py
Runtime Error
0
0
62
s = int(input()) print(s/60/60 + ":" + s/60%60 + ":" + s%60)
s112375828
p02390
u373340964
1519097144
Python
Python3
py
Runtime Error
0
0
78
x = int(input()) print("{0}:{1}:{2}",format(x // 3600, x // 60 % 60, x % 60 )
s929669518
p02390
u373340964
1519097341
Python
Python3
py
Runtime Error
0
0
79
x = int(input()) print("{0}:{1}:{2}",format(x // 3600, x // 60 % 60, x % 60 ))
s658193583
p02390
u299231628
1519293695
Python
Python3
py
Runtime Error
0
0
225
getime(n): h = m = s = 0 while n >= 3600: n -= 3600 h += 1 while n >= 60: n -= 60 m += 1 s = n return h, m, s h,m,s = getime(int(input())) print("{}:{}:{}".format(h,m,s))
s636908776
p02390
u553148578
1519715839
Python
Python
py
Runtime Error
0
0
54
s=int(input()) print((s//3600) : (s//60%60) : (s%60))
s289964932
p02390
u553148578
1519715845
Python
Python3
py
Runtime Error
0
0
54
s=int(input()) print((s//3600) : (s//60%60) : (s%60))
s160000321
p02390
u592769330
1520155891
Python
Python3
py
Runtime Error
0
0
69
s=input() m=s//60 h=m//60 s=s%60 print("{}:{}:{}".format(h,m,s))
s241764583
p02390
u592769330
1520156347
Python
Python3
py
Runtime Error
0
0
188
s = int(input()) m = s // 60 h = m // 60 s = s % 60 output="" if(h!=0): output+=int(h) output+=":" if(m!=0): output+=int(m) output+=":" if(s!=0): output+=int(s) print(output)
s150446576
p02390
u005739171
1520172746
Python
Python3
py
Runtime Error
0
0
82
S = input() h = S // 3600 m = (S % 3600) // 60 s = (S % 60) print(h,":",m,":",s)
s063462180
p02390
u005739171
1520172772
Python
Python3
py
Runtime Error
0
0
82
S = input() h = S // 3600 m = (S % 3600) // 60 s = (S % 60) print(h,":",m,":",s)
s279693958
p02390
u017435045
1520679395
Python
Python3
py
Runtime Error
0
0
46
x=int(input()) print(x//3600,x//60%60,x%60,
s118586408
p02390
u017435045
1520679434
Python
Python3
py
Runtime Error
0
0
46
x=int(input()) print(x//3600,x//60%60,x%60)
s030088206
p02390
u017435045
1520679446
Python
Python3
py
Runtime Error
0
0
46
x=int(input()) print(x//3600,x//60%60,x%60)
s184968658
p02390
u017435045
1520679737
Python
Python3
py
Runtime Error
0
0
52
x=int(input()) print(x//3600,x/60%60,x/60.sep=" ")
s241763146
p02390
u017435045
1520679751
Python
Python3
py
Runtime Error
0
0
54
x=int(input()) print(x//3600,x/60%60,x/60,sep={" "})
s073048083
p02390
u177081782
1520746952
Python
Python3
py
Runtime Error
0
0
104
a = input() b = int(a / 3600) c = int((a % 3600)/60) d = (a%60) print(str(b) + ":" + str(c) + ":" + d)
s903603627
p02390
u507758132
1521094826
Python
Python3
py
Runtime Error
0
0
111
S = int(input()) hour = S / (60*60) min = (S - hour * 60*60) / 60 sec = S % 3600 print (hour+":"+min+":"sec)
s221236207
p02390
u507758132
1521094984
Python
Python3
py
Runtime Error
0
0
104
S = int(input()) hour = S / (60*60) min = S % (60*60) / 60 sec = S % 60 print (hour+":"+min+":"sec)
s433315560
p02390
u566311709
1521120179
Python
Python3
py
Runtime Error
0
0
105
n = int(input()) h = n // 3600 m = h // 60 s = n - 3600 * h - 60 * m print '{0}:{1}:{2}'.format(h, m, s)
s733220858
p02390
u921303861
1521384690
Python
Python3
py
Runtime Error
0
0
140
time = map(int, input().split()) h=0 h = int(time/(60*60)) m=int(time/60-h*60) s=int(time-h*60*60-m*60) print(str(h)+":"+str(m)+":"+str(s))
s054990268
p02390
u921303861
1521384719
Python
Python3
py
Runtime Error
0
0
132
time = map(int, input()) h=0 h = int(time/(60*60)) m=int(time/60-h*60) s=int(time-h*60*60-m*60) print(str(h)+":"+str(m)+":"+str(s))
s727742050
p02390
u921303861
1521384783
Python
Python3
py
Runtime Error
0
0
140
time =input()) h=0 h = int(time/(60*60)) m=int(time/60-h*60) s=int(time-h*60*60-m*60) print(str(h)+":"+str(m)+":"+str(s))javascript:void(0)
s076761155
p02390
u921303861
1521384845
Python
Python3
py
Runtime Error
0
0
139
time =input() h=0 h = int(time/(60*60)) m=int(time/60-h*60) s=int(time-h*60*60-m*60) print(str(h)+":"+str(m)+":"+str(s))javascript:void(0)
s631016202
p02390
u921303861
1521384897
Python
Python3
py
Runtime Error
0
0
139
time =input() h=0 h = int(time/(60*60)) m=int(time/60-h*60) s=int(time-h*60*60-m*60) print(str(h)+":"+str(m)+":"+str(s))javascript:void(0)
s442014916
p02390
u921303861
1521384941
Python
Python3
py
Runtime Error
0
0
117
time =input() h = int(time/(60*60)) m=int(time/60-h*60) s=int(time-h*60*60-m*60) print(str(h)+":"+str(m)+":"+str(s))