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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
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]) |
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)) |
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)) |
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])) |
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])) |
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)) |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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) |
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
|
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)
|
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 |
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)) |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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) |
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) |
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) |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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) |
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) |
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) |
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 |
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 |
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 |
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 |
s102706769 | p02390 | u456885296 | 1452582898 | Python | Python | py | Runtime Error | 0 | 0 | 49 | S=input()
print S/3600+':'+(S%3600)/60+':'+S%60 |
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) |
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) |
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 |
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) |
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) |
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 |
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) |
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) |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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) |
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) |
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) |
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) |
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) |
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) |
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)) |
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) |
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) |
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) |
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) |
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) |
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) |
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) |
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) |
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 |
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 |
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) |
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) |
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) |
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) |
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) |
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) |
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) |
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)) |
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) |
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) |
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) |
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) |
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) |
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) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.