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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s458431112 | p02390 | u025362139 | 1496651924 | Python | Python | py | Runtime Error | 0 | 0 | 93 | a = int("input()")/3600
a_p = int(input())%3600
b = a_p/60
b_p = a_p%60
print a,":",b,":",b_p |
s009409985 | p02390 | u025362139 | 1496652134 | Python | Python | py | Runtime Error | 0 | 0 | 107 | list[0] = int(input())/3600
a_p = int(input())%3600
list[1] = a_p/60
list[2] = a_p%60
print ":".join(list) |
s281096731 | p02390 | u025362139 | 1496652384 | Python | Python | py | Runtime Error | 0 | 0 | 116 | list = [0] * 4
a = int(input())
list[0] = a/3600
a_p = a%3600
list[1] = a_p/60
list[2] = a_p%60
print ":".join(list) |
s141811595 | p02390 | u025362139 | 1496652512 | Python | Python | py | Runtime Error | 0 | 0 | 116 | list = [0] * 4
a = int(input())
list[0] = a/3600
a_p = a%3600
list[1] = a_p/60
list[2] = a_p%60
print ":".join(list) |
s203594462 | p02390 | u025362139 | 1496652865 | Python | Python | py | Runtime Error | 0 | 0 | 116 | list = [0] * 4
a = int(input())
list[0] = a/3600
a_p = a%3600
list[1] = a_p/60
list[2] = a_p%60
print ":".join(list) |
s362596213 | p02390 | u025362139 | 1496653143 | Python | Python | py | Runtime Error | 0 | 0 | 115 | list = [0] * 4
a = int(input())
list[0] = a/3600
a_p = a%3600
list[1] = a_p/60
list[2] = a_p%60
print ":".int(list) |
s556446017 | p02390 | u675844759 | 1496797359 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | S = int(input())
in = divmod(S,3600)
h = in[0]
in = divmod(int[1],60)
m = int[0]
s = int[1] |
s395554210 | p02390 | u675844759 | 1496797389 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | S = int(input())
in = divmod(S,3600)
h = in[0]
in = divmod(in[1],60)
m = in[0]
s = in[1] |
s478540513 | p02390 | u100370736 | 1496814363 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | a=input()
b=a/3600
d=a%60
c=(a-b*3600-d)/60
print b,":",c,":",d |
s925821988 | p02390 | u050103511 | 1497507901 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | S = int(input())
h = S // 3600
m = S % 3600
s = m % 60
print(h + ":" + m + ":" + s) |
s159720233 | p02390 | u261533743 | 1497508388 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | S = int(input())
h = int(S / (60 * 60))
m = int(S / 60) % 60
s = s % 60
print("{}:{}:{}".format(h,m,s)) |
s098987870 | p02390 | u410114382 | 1497508470 | Python | Python3 | py | Runtime Error | 0 | 0 | 127 | import datetime
t = datetime.time(1, 2, 3)
print t
print 'hour :', t.hour
print 'minute:', t.minute
print 'second:', t.second |
s228144958 | p02390 | u050103511 | 1497508481 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | S = int(input())
h = int(S / 3600)
m = int(S / 60)
m = m % 60
s = m % 60
print({0}:{1}:{2}.format(h,m,s)} |
s528072680 | p02390 | u050103511 | 1497508509 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | S = int(input())
h = int(S / 3600)
m = int(S / 60)
m = m % 60
s = m % 60
print({0}:{1}:{2}.format(h,m,s)) |
s658263759 | p02390 | u050103511 | 1497508754 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | S = int(input())
h = int(S / 3600)
m = int(S / 60)
m = m % 60
s = S % 60
print({0}:{1}:{2}.format(h,m,s)) |
s022241788 | p02390 | u658089986 | 1497508796 | Python | Python3 | py | Runtime Error | 0 | 0 | 168 | timesec = import()
h = int(timesec/(60**2))
m = int(timesec%(60**2) / 60)
s = int(timesec%(60**2) % 60)
h = str(h)
m = str(m)
s = str(s)
print( h + ':' + m + ':' +s ) |
s762981389 | p02390 | u169794024 | 1497508852 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | S=int(input())
h=s/(60*60)
m=s%(60*60)/60
s=s%(60*60)%60
print(h:m:s) |
s577104297 | p02390 | u569585396 | 1497508856 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | S = int(input())
ko = ":"
print("S[0:2]" + ko + S[2:3] + ko + S[3:5]) |
s749588415 | p02390 | u169794024 | 1497508987 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | S=int(input())
h=S/(60*60)
m=S%(60*60)/60
s=S%(60*60)%60
print(h:m:s) |
s827498332 | p02390 | u433181015 | 1497509025 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | S = int(input())
h = S//3600
m = (S%3600)//60
s = S%m
print(h:m:s) |
s725169504 | p02390 | u658089986 | 1497509101 | Python | Python3 | py | Runtime Error | 0 | 0 | 156 | timesec = import()
h = int(timesec/(60**2))
m = int(timesec%(60**2) / 60)
s = int(timesec%(60**2) % 60)
h = str(h)
m = str(m)
s = str(s)
':'.join([h,m,s]) |
s597131727 | p02390 | u169794024 | 1497509147 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | S=int(input())
h=S/(60**60)
m=S%(60**60)/60
s=S%(60**60)%60
print(h:m:s) |
s242649109 | p02390 | u569585396 | 1497509160 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | S = int(input())
h = S[0:2]
m = [2:3]
s = [3:5]
print("h" + ":" + "m" + ":" + "s") |
s519317622 | p02390 | u169794024 | 1497509259 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | S=int(input())
h=S/3600
m=S%3600/60
s=S%3600%60
print(h:m:s) |
s988032060 | p02390 | u323082382 | 1497509312 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | S = int(input())
a = S//3600
b = (S/3600-a)*3600
c = b//60
d = (b/60-b)*60
print(':'.join((a),(c),(d)) |
s621381417 | p02390 | u623827446 | 1497509352 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | S=int(input())
h=int(S/3600)
S2=S-h
m=int(S2/60)
s=S2-m
print(h+':'+m+':'+s) |
s599236391 | p02390 | u169794024 | 1497509393 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | S=int(input())
h=S/3600
m=S%3600/60
s=S%3600%60
print(":"join( h,m,s)) |
s383125517 | p02390 | u059971171 | 1497509415 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | import math
S = int(input())
h = math.floor(S/3600)
m = (S - h)/60
s = S - h - m
print(h + ":" + m + ":" + s) |
s485724217 | p02390 | u169794024 | 1497509554 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | S=int(input())
h=S/3600
m=S%3600/60
s=S%3600%60
print(":".join(h:m:s)) |
s838931300 | p02390 | u623827446 | 1497509558 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | S=int(input())
h=int(S/3600)
S2=S-h
m=int(S2/60)
s=S2-m
print(':'.join[h,m,s]) |
s631241933 | p02390 | u169794024 | 1497509603 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | S=int(input())
h=S/3600
m=S%3600/60
s=S%3600%60
print(":".join(h,m,s)) |
s077165054 | p02390 | u027278270 | 1497509862 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | S = int(input())
h = S//3600
m = (S%3600)//60
s = (S%3600)%60
print(h:m:s) |
s737478877 | p02390 | u486972540 | 1497509894 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | S = int(input())
h = S // 3600
m = (S % 3600) // 60
s = S % 3600
print(h:m:s) |
s131526440 | p02390 | u721221949 | 1497509923 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | S = int(input())
h = S//3600
m = (S%3600)//60
s = (S%3600)%60
print(h:m:s) |
s620579663 | p02390 | u721221949 | 1497509970 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | S = int(input())
h = int(S)//3600
m = (int(S)%3600)//60
s = (int(S)%3600)%60
print(h:m:s) |
s765601754 | p02390 | u486972540 | 1497510006 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | S = int(input())
h = S // 3600
m = (S % 3600) // 60
s = (S % 3600) % 60
print(h:m:s) |
s040059601 | p02390 | u323082382 | 1497510025 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | S = int(input())
a = S//3600 #h
b = S%3600//60 #m
c = (S%3600)//60
print(":".join((a),(b),(c)) |
s062593586 | p02390 | u323082382 | 1497510081 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | S = int(input())
a = S//3600 #h
b = S%3600//60 #m
c = (S%3600)//60
print(":".join[(a),(b),(c)]) |
s073473845 | p02390 | u169794024 | 1497510203 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | S=int(input())
h=S//3600
m=S%3600//60
s=S%3600%60
print":".join(h,m,s) |
s572630279 | p02390 | u059971171 | 1497510223 | Python | Python3 | py | Runtime Error | 0 | 0 | 160 | import math
S = int(input())
print(math.floor(S/3600)+":"+math.floor(S -(math.floor(S/3600)/60)+":"+ S -math.floor(S/3600)-math.floor(S-(math.floor(S/3600)/60)) |
s982687201 | p02390 | u623827446 | 1497510395 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | S=int(input())
h=int(S/3600)
S2=S-h
m=int(S2/60)
s=S2-m
print('{}:{}:{}',format(h,m,s)) |
s428331654 | p02390 | u169794024 | 1497510397 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | S=int(input())
h=S/3600
m=S%3600/60
s=S%3600%60
print('{0}:{1}:{2}'format(h,m,s)) |
s965563042 | p02390 | u169794024 | 1497510457 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | S=int(input())
h=S/3600
m=(S%3600)/60
s=(S%3600)%60
print('{0}:{1}:{2}'format(h,m,s)) |
s131917158 | p02390 | u923630348 | 1497510458 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | print ('{}:{}:{}'.format(h,m,s) |
s308393849 | p02390 | u623827446 | 1497510497 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | S=int(input())
h=int(S/3600)
m=int(S/60)%60
s=S%60
print('{}:{}:{}',format(h,m,s)) |
s272786066 | p02390 | u059971171 | 1497510500 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | S = int(input())
h = S//3600
m = (S - h)//60
s = S - (h*3600) - (m*60)
print(h + ":" + m + ":" + s) |
s054344993 | p02390 | u486972540 | 1497510518 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | S = int(input())
h = int(S / (60*60))
m = int(S / 60) % 60
s = S % 60
print('{}:{}:{}'.format(h.m.s) |
s830209156 | p02390 | u486972540 | 1497510532 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | S = int(input())
h = int(S / (60*60))
m = int(S / 60) % 60
s = S % 60
print('{ }:{ }:{ }'.format(h.m.s) |
s461437697 | p02390 | u486972540 | 1497510556 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | S = int(input())
h = int(S / (60*60))
m = int(S / 60) % 60
s = S % 60
print('{0}:{1}:{2}'.format(h.m.s) |
s627476103 | p02390 | u818923713 | 1497510611 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | S = int(input())
h = int(S / (60 * 60))
m = int(S / 60) % 60
S = S % 60
print('{}:{}:{}'.format(h,m,s) |
s086551389 | p02390 | u818923713 | 1497510643 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | S = int(input())
h = int(S / (60 * 60))
m = int(S / 60) % 60
S = S % 60
print('{}:{}:{}'.format(h,m,s)) |
s460664185 | p02390 | u486972540 | 1497510712 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | S = int(input())
h = int(S // (60*60))
m = int((S % 3600) // 60)
s = int((S % 3600) %60)
print('{0}:{1}:{2}'.format(h.m.s) |
s511171624 | p02390 | u486972540 | 1497510733 | Python | Python3 | py | Runtime Error | 0 | 0 | 124 | S = int(input())
h = int(S // (60*60))
m = int((S % 3600) // 60)
s = int((S % 3600) %60)
print('{0}:{1}:{2}'.format(h.m.s)) |
s335630606 | p02390 | u565553603 | 1497510741 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | S = int(input())
h = int(S / (60*60))
m = int(S / 60) % 60
s = S % 60
print('{ }:{ }:{ }' .format(h,m,s)) |
s793811210 | p02390 | u486972540 | 1497510789 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | S = int(input())
h = int(S // (60*60))
m = int(S / 60) % 60
s = S%60
print('{0}:{1}:{2}'.format(h.m.s)) |
s533530758 | p02390 | u486972540 | 1497510798 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | S = int(input())
h = int(S // (60*60))
m = int(S / 60) % 60
s = S%60
print('{}:{}:{}'.format(h.m.s)) |
s005325894 | p02390 | u333596716 | 1497511039 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | S = int(input())
h = int(S / 60) / 60
m = int(S / 60) % 60
s = int(S % 60)
print"{0}:{1}:{2}",format(h,m,s) |
s774476266 | p02390 | u486972540 | 1497511091 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | S = int(input)
h = S // 3600
m = (S % 3600) // 60
s = (S % 3600) % 60
print('{}:{}:{}'.format(h,m,s)) |
s191958982 | p02390 | u658089986 | 1497511159 | Python | Python3 | py | Runtime Error | 0 | 0 | 163 | timesec = import()
h = int(timesec/(60**2))
m = int(timesec%(60**2) / 60)
s = int(timesec%(60**2) % 60)
h = str(h)
m = str(m)
s = str(s)
print(':'.join([h,m,s])) |
s448734258 | p02390 | u333596716 | 1497511163 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | S = int(input())
h = int((S / 60) / 60) % 60
m = int(S / 60) % 60
s = int(S % 60)
print"{0}:{1}:{2}".format(h,m,s) |
s179208773 | p02390 | u658089986 | 1497511170 | Python | Python3 | py | Runtime Error | 0 | 0 | 163 | timesec = import()
h = int(timesec/(60**2))
m = int(timesec%(60**2) / 60)
s = int(timesec%(60**2) % 60)
h = str(h)
m = str(m)
s = str(s)
print(':'.join([h,m,s])) |
s311903305 | p02390 | u658089986 | 1497511171 | Python | Python3 | py | Runtime Error | 0 | 0 | 163 | timesec = import()
h = int(timesec/(60**2))
m = int(timesec%(60**2) / 60)
s = int(timesec%(60**2) % 60)
h = str(h)
m = str(m)
s = str(s)
print(':'.join([h,m,s])) |
s019672132 | p02390 | u658089986 | 1497511173 | Python | Python3 | py | Runtime Error | 0 | 0 | 163 | timesec = import()
h = int(timesec/(60**2))
m = int(timesec%(60**2) / 60)
s = int(timesec%(60**2) % 60)
h = str(h)
m = str(m)
s = str(s)
print(':'.join([h,m,s])) |
s048936472 | p02390 | u658089986 | 1497511175 | Python | Python3 | py | Runtime Error | 0 | 0 | 163 | timesec = import()
h = int(timesec/(60**2))
m = int(timesec%(60**2) / 60)
s = int(timesec%(60**2) % 60)
h = str(h)
m = str(m)
s = str(s)
print(':'.join([h,m,s])) |
s775890717 | p02390 | u658089986 | 1497511434 | Python | Python3 | py | Runtime Error | 0 | 0 | 163 | timesec = import()
h = int(timesec/(60**2))
m = int(timesec%(60**2) / 60)
s = int(timesec%(60**2) % 60)
h = str(h)
m = str(m)
s = str(s)
print(":".join([h,m,s])) |
s705994828 | p02390 | u658089986 | 1497511441 | Python | Python3 | py | Runtime Error | 0 | 0 | 163 | timesec = import()
h = int(timesec/(60**2))
m = int(timesec%(60**2) / 60)
s = int(timesec%(60**2) % 60)
h = str(h)
m = str(m)
s = str(s)
print(":".join([h,m,s])) |
s498281427 | p02390 | u658089986 | 1497511442 | Python | Python3 | py | Runtime Error | 0 | 0 | 163 | timesec = import()
h = int(timesec/(60**2))
m = int(timesec%(60**2) / 60)
s = int(timesec%(60**2) % 60)
h = str(h)
m = str(m)
s = str(s)
print(":".join([h,m,s])) |
s554465782 | p02390 | u658089986 | 1497511444 | Python | Python3 | py | Runtime Error | 0 | 0 | 163 | timesec = import()
h = int(timesec/(60**2))
m = int(timesec%(60**2) / 60)
s = int(timesec%(60**2) % 60)
h = str(h)
m = str(m)
s = str(s)
print(":".join([h,m,s])) |
s703298743 | p02390 | u658089986 | 1497511447 | Python | Python3 | py | Runtime Error | 0 | 0 | 163 | timesec = import()
h = int(timesec/(60**2))
m = int(timesec%(60**2) / 60)
s = int(timesec%(60**2) % 60)
h = str(h)
m = str(m)
s = str(s)
print(":".join([h,m,s])) |
s258571788 | p02390 | u658089986 | 1497511448 | Python | Python3 | py | Runtime Error | 0 | 0 | 163 | timesec = import()
h = int(timesec/(60**2))
m = int(timesec%(60**2) / 60)
s = int(timesec%(60**2) % 60)
h = str(h)
m = str(m)
s = str(s)
print(":".join([h,m,s])) |
s510264424 | p02390 | u658089986 | 1497511450 | Python | Python3 | py | Runtime Error | 0 | 0 | 163 | timesec = import()
h = int(timesec/(60**2))
m = int(timesec%(60**2) / 60)
s = int(timesec%(60**2) % 60)
h = str(h)
m = str(m)
s = str(s)
print(":".join([h,m,s])) |
s164606046 | p02390 | u658089986 | 1497511497 | Python | Python3 | py | Runtime Error | 0 | 0 | 163 | timesec = import()
h = int(timesec/(60**2))
m = int(timesec%(60**2) / 60)
s = int(timesec%(60**2) % 60)
h = str(h)
m = str(m)
s = str(s)
print(":".join([h,m,s])) |
s837792398 | p02390 | u692161606 | 1497512995 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | S = int(input))
h = int(S / (60 * 60))
m = int(S / 60) % 60
s = S % 60
print('{}:{}:{}:.format(h,m,s)) |
s084457544 | p02390 | u200401481 | 1497807071 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | s = int(input())
h = s/3600
m = (s%3600)/60
s = ((s%3600)%60)
print(h+":"+m+":"+s) |
s964507834 | p02390 | u776018831 | 1498031718 | Python | Python3 | py | Runtime Error | 0 | 0 | 18 | ?????????????????? |
s208018766 | p02390 | u776018831 | 1498031753 | Python | Python3 | py | Runtime Error | 0 | 0 | 18 | ?????????????????? |
s255124360 | p02390 | u776018831 | 1498031774 | Python | Python3 | py | Runtime Error | 0 | 0 | 18 | ?????????????????? |
s851511801 | p02390 | u038835138 | 1498383340 | Python | Python | py | Runtime Error | 0 | 0 | 60 | S=int(raw_input())
print S/3600 + ":" + S/60%60 + ":" + S%60 |
s178356368 | p02390 | u729486845 | 1498570935 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | s=int(input())
hh=int(s/3600)
mm=int((s%3600)/60)
ss+int(s%60)
print(str(hh)+":"+str(mm)+":"+str(ss)) |
s627386164 | p02390 | u844704750 | 1498680249 | Python | Python | py | Runtime Error | 0 | 0 | 134 | S_input = input()
S_ans = S_input % 60
M = int(S_input / 60)
M_ans = M % 60
H_ans = int(M / 60)
print "%d:%d:%d".(S_ans, M_ans, H_ans) |
s883729472 | p02390 | u844704750 | 1498681077 | Python | Python3 | py | Runtime Error | 0 | 0 | 136 | S_input = input()
S_ans = S_input % 60
M = int(S_input / 60)
M_ans = M % 60
H_ans = int(M / 60)
print ("%d:%d:%d"%(H_ans, M_ans, S_ans)) |
s546394912 | p02390 | u844704750 | 1498681129 | Python | Python3 | py | Runtime Error | 0 | 0 | 136 | S_input = input()
S_ans = S_input % 60
M = int(S_input / 60)
M_ans = M % 60
H_ans = int(M / 60)
print ("%d:%d:%d"%(H_ans, M_ans, S_ans)) |
s140444049 | p02390 | u923630348 | 1498716395 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | s = gets.to_i
h = (s/3600).floor
s = s%3600
m = (s/60).floor
s = s%60
print h,":",m,":",s,"\n" |
s533045839 | p02390 | u923630348 | 1498716440 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | s = input()
h = s/3600
s = s%3600
m = s/60
s = s%60
print str(h) + ":" + str(m) + ":" + str(s) |
s566700623 | p02390 | u923630348 | 1498716453 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | s = input()
h = s/3600
s = s%3600
m = s/60
s = s%60
print str(h) + ":" + str(m) + ":" + str(s) |
s071638901 | p02390 | u923630348 | 1498716620 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | #coding: UTF-8
s = input()
h = s/3600
s = s%3600
m = s/60
s = s%60
print str(h) + ":" + str(m) + ":" + str(s) |
s279303903 | p02390 | u923630348 | 1498716661 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | s = input()
h = s/3600
s = s%3600
m = s/60
s = s%60
print str(h) + ":" + str(m) + ":" + str(s) |
s224548554 | p02390 | u889427239 | 1499141607 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | S = int(input())
h = int(S//3600)
m = S%3600//60
s = S%3600%60
print(h+":"+m+":"+s) |
s115197865 | p02390 | u350064373 | 1499236486 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | time = input("")
h = time // 3600
h2 = time % 3600
m = h2 // 60
m2 = h2 % 60
s = m2
print(h+:+m+:+s) |
s916249073 | p02390 | u311299757 | 1499694785 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | print("{}:{}:{}".format(input()/60, input/3600, input()%3600) |
s310971972 | p02390 | u311299757 | 1499694801 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | print("{}:{}:{}".format(input()/60, input()/3600, input()%3600) |
s682850149 | p02390 | u311299757 | 1499694812 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | print("{}:{}:{}".format(input()/60, input()/3600, input()%3600)) |
s015523893 | p02390 | u043639882 | 1499818586 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | S=int(input())
h=int(S / 3600)
m=int((s / 3600) /60)
s=int(((s/3600)/60)/60) |
s444861941 | p02390 | u858885710 | 1500195175 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | sec = int(input())
print('{}:{}:{}'.format(sec//3600, (sec//60)%60, sec%60)javascript:void(0) |
s116926900 | p02390 | u142321256 | 1502346272 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | in = input()
h=in/3600
m=in/60-60*h
s=in%60
print(str(h)+':'+str(m)+':'+str(s)) |
s376094264 | p02390 | u142321256 | 1502346339 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | in = input()
h=in/3600
m=in/60-60*h
s=in%60
print(str(h)+':'+str(m)+':'+str(s)) |
s232596989 | p02390 | u142321256 | 1502346430 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | in = input()
h=in/3600
m=in/60-60*h
s=in%60
print(str(h)+':'+str(m)+':'+str(s)) |
s209877416 | p02390 | u142321256 | 1502346496 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | in = input()
h=in/3600
m=in/60-60*h
s=in%60
print('a')
print(str(h)+':'+str(m)+':'+str(s)) |
s303648321 | p02390 | u744121389 | 1502359528 | Python | Python3 | py | Runtime Error | 0 | 0 | 136 | x = int(input())
a = x / 60
hour = a / 60
minute = x - (hour * 60)
second = x - 60 * (hour + minute)
print(str(hour:minute:second)) |
s568071818 | p02390 | u853619096 | 1502509215 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | s=int(input())
h=s//3600
ss=(ss-3600*h)//60
se=(ss-3600*h-h*60)
print("{}:{}:{}".format(h,ss,se) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.