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
s217204810
p02390
u402330988
1459695348
Python
Python
py
Runtime Error
0
0
261
def main(): input = input() if 0 <= input < 86400: hour = int(input / 3600) minute = int((input / 60) % 60) seconde = int(input % 60) print("{0}:{1}:{2}".format(hour,minute,seconde)) if __name__ == "__main__": main()
s346812635
p02390
u402330988
1459695418
Python
Python
py
Runtime Error
0
0
261
def main(): input = input() if 0 <= input < 86400: hour = int(input % 3600) minute = int((input / 60) % 60) seconde = int(input % 60) print("{0}:{1}:{2}".format(hour,minute,seconde)) if __name__ == "__main__": main()
s841412822
p02390
u402330988
1459695500
Python
Python
py
Runtime Error
0
0
257
def main(): input = input() if 0 <= input < 86400: hour = input / 3600 minute = int((input // 60) % 60) seconde = int(input % 60) print("{0}:{1}:{2}".format(hour,minute,seconde)) if __name__ == "__main__": main()
s125648499
p02390
u402330988
1459695533
Python
Python
py
Runtime Error
0
0
248
def main(): input = input() if 0 <= input < 86400: hour = input / 3600 minute = (input // 60) % 60 seconde = input % 60 print("{0}:{1}:{2}".format(hour,minute,seconde)) if __name__ == "__main__": main()
s820589508
p02390
u402330988
1459695827
Python
Python
py
Runtime Error
0
0
448
def main(): input = input() #input = 46979 #print("%s:%s:%s"%(S/3600,(S//60)%60,S%60)) if 0 <= input < 86400: hour = int(input / 3600) #minute = int(hour / 60) minute = int((input / 60) % 60) seconde = int(input % 60) #print("{0}:{1}:{2}".format(h, m, s)) print("%d:%d:%d" % (hour,minute,seconde)) if __name__ == "__main__": print("main start!") main() print("main end!")
s176393852
p02390
u402330988
1459695887
Python
Python3
py
Runtime Error
0
0
254
def main(): input = input() if 0 <= input < 86400: hour = int(input / 3600) minute = int((input / 60) % 60) seconde = int(input % 60) print("%d:%d:%d" % (hour,minute,seconde)) if __name__ == "__main__": main()
s731742485
p02390
u402330988
1459695893
Python
Python3
py
Runtime Error
0
0
254
def main(): input = input() if 0 <= input < 86400: hour = int(input / 3600) minute = int((input / 60) % 60) seconde = int(input % 60) print("%d:%d:%d" % (hour,minute,seconde)) if __name__ == "__main__": main()
s317386965
p02390
u402330988
1459695937
Python
Python3
py
Runtime Error
0
0
180
input = input() if 0 <= input < 86400: hour = int(input / 3600) minute = int((input / 60) % 60) seconde = int(input % 60) print("%d:%d:%d" % (hour,minute,seconde))
s413532959
p02390
u402330988
1459695963
Python
Python3
py
Runtime Error
0
0
164
input = input() if 0 <= input < 86400: hour = input / 3600 minute = (input / 60) % 60 seconde = input % 60 print("%d:%d:%d" % (hour,minute,seconde))
s413586409
p02390
u402330988
1459725933
Python
Python3
py
Runtime Error
0
0
234
def main(input): if 0 <= input < 86400: hour = input / 3600 minute = (input / 60) % 60 seconde = input % 60 print("%d:%d:%d" % (hour,minute,seconde)) if __name__ == "__main__": main(int(input))
s082085626
p02390
u402330988
1459725992
Python
Python3
py
Runtime Error
0
0
164
input = input() if 0 <= input < 86400: hour = input / 3600 minute = (input / 60) % 60 seconde = input % 60 print("%d:%d:%d" % (hour,minute,seconde))
s416827787
p02390
u402330988
1459726012
Python
Python3
py
Runtime Error
0
0
162
input = input() if 0 <= input < 86400: hour = input / 3600 minute = (input / 60) % 60 second = input % 60 print("%d:%d:%d" % (hour,minute,second))
s279550968
p02390
u762833208
1461201475
Python
Python
py
Runtime Error
0
0
79
S =input() s =S%60 m =((S-s)/60)%60 h = ((S-s)/60-m)/60 print "%s:%s:%s"(h,m,s)
s756021171
p02390
u216235239
1461461822
Python
Python
py
Runtime Error
0
0
135
q = input() ans_s = q % 60 ans_m = ((q - ans_s)/60) % 60 ans_h = ((q - ans_s)/60 - ans_m) / 60 print(ans_h & ":" & ans_m & ":" & ans_s)
s619112098
p02390
u447154297
1461663042
Python
Python3
py
Runtime Error
0
0
70
s=int(input()) h=s//3600 m=s%3600//60 s=s%3600%60 print(h+":"+m+":"+s)
s940616357
p02390
u070968430
1463888581
Python
Python3
py
Runtime Error
0
0
136
S = int(input()) h = int(S / 3600) r1 = int(S % 3600) m = int(r1 / 60) r2 = int(r % 60) s = r2 print(":".join([str(h), str(m), str(s)]))
s418630278
p02390
u070968430
1463888816
Python
Python3
py
Runtime Error
0
0
148
S = int(input()) h = int(S / 3600) r1 = int(S % 3600) m = int(r1 / 60) r2 = int(r % 60) s = r2 print(":".join([str(h), str(m), str(s)]), end = "\n")
s577903055
p02390
u104931506
1464192319
Python
Python3
py
Runtime Error
0
0
144
S = int(input()) hour = S // 3600 min = (S - 3600 * hour) // 60 sec = S - 3600 * hour - 60 * min print(':'.join([str(hour),str(min),str(sec)])
s145288189
p02390
u104931506
1464544962
Python
Python3
py
Runtime Error
0
0
97
x = int(input()) h = x / 3600 m = (x % 3600) / 60 s = x - h*3600 - m*60 print(':'.join([h, m, s])
s132679346
p02390
u104931506
1464544993
Python
Python3
py
Runtime Error
0
0
95
x = int(input()) h = x / 3600 m = (x % 3600) / 60 s = x - h*3600 - m*60 print(':'.join(h, m, s)
s008981780
p02390
u104931506
1464545588
Python
Python3
py
Runtime Error
0
0
101
x = int(input()) h = x / 3600 m = (x % 3600) / 60 s = x - h*3600 - m*60 print(':'.join('h', 'm', 's')
s520724009
p02390
u104931506
1464545598
Python
Python3
py
Runtime Error
0
0
102
x = int(input()) h = x / 3600 m = (x % 3600) / 60 s = x - h*3600 - m*60 print(':'.join('h', 'm', 's'))
s318906910
p02390
u177370127
1464761844
Python
Python3
py
Runtime Error
0
0
215
S = int(input()) h = 0 m = 0 s = 0 while True: if S >= 3600: h += 1 S -= 3600 elif S >= 60: m += 1 S -= 60 else: S = s break print(h + ":" + m + ":" + s)
s411777483
p02390
u106088354
1464762637
Python
Python3
py
Runtime Error
0
0
68
s = int(input()) print("%d:%d:%d" % (s / 60 / 60 / 60, s / 60 / 60))
s734707546
p02390
u734072322
1465529007
Python
Python
py
Runtime Error
0
0
92
s = input() a = s / 3600 b = s % 3600 c = b / 60 d = b % 60 print a + ":" + c + ":" + d
s158880650
p02390
u269653912
1466018677
Python
Python3
py
Runtime Error
0
0
95
S = int(input()) h = S//3600 m = (S-3600*h)//60 s = S-3600*h-60*m print(str(h)+":"+str(m)+":"+s
s009104848
p02390
u834819056
1467656064
Python
Python
py
Runtime Error
0
0
110
sec = int(raw_input()) H = 3600 M = 60 h = sec / H sec = sec % H m = sec / M s = sec % M print h+":"+m+":"+s
s609714188
p02390
u834819056
1467656093
Python
Python
py
Runtime Error
0
0
110
sec = int(raw_input()) H = 3600 M = 60 h = sec / H sec = sec % H m = sec / M s = sec % M print h+":"+m+":"+s
s227416260
p02390
u278051393
1468414652
Python
Python3
py
Runtime Error
0
0
107
sec = int(input()) min = sec / 60 hour = min / 60 min -= hour * 60 sec %= 60 print(hour+":"+min+":"+sec)
s403451905
p02390
u278051393
1468414702
Python
Python3
py
Runtime Error
0
0
117
sec = int(input()) min = int(sec / 60) hour = int(min / 60) min -= hour * 60 sec %= 60 print(hour+":"+min+":"+sec)
s044194519
p02390
u671553883
1469512195
Python
Python3
py
Runtime Error
0
0
55
S = int[h(1/3600), m(1/60), s(1/1), input()] print("s")
s536807119
p02390
u671553883
1469512259
Python
Python3
py
Runtime Error
0
0
53
S = int[h(1/3600), m(1/60), s(1/1), input(), print()]
s564352107
p02390
u587193722
1469512301
Python
Python3
py
Runtime Error
0
0
78
x = int(input()) a = x//3600 b = x%3600//60 c = x%3600%60 print(a+':'+b+':'+c)
s516186891
p02390
u757827098
1469512312
Python
Python3
py
Runtime Error
0
0
70
S = int(input()) h = int(S / 3600) m = int(S /60) s = h-m print(h:m:s)
s457648312
p02390
u671553883
1469512638
Python
Python3
py
Runtime Error
0
0
79
S = int[h = (S / 3600), m = (S / 60), for S in range(0, 60) input()] print('S')
s598309121
p02390
u671553883
1469512673
Python
Python3
py
Runtime Error
0
0
79
S = int(h = (S / 3600), m = (S / 60), for S in range(0, 60) input()) print('S')
s798705013
p02390
u600195957
1469512727
Python
Python3
py
Runtime Error
0
0
83
S = int(input:) h = S / 3600 m = (S % 3600) / 60 s = (S % 3600) % 60 print(h, m, s)
s351513465
p02390
u671553883
1469512728
Python
Python3
py
Runtime Error
0
0
86
S = int(h = (S / 3600), m = (S % 3600 / 60), for S in range(0, 60) input()) print('S')
s370272667
p02390
u600195957
1469512737
Python
Python3
py
Runtime Error
0
0
83
S = int(input:) h = S / 3600 m = (S % 3600) / 60 s = (S % 3600) % 60 print(h, m, s)
s416571754
p02390
u514745787
1469512766
Python
Python3
py
Runtime Error
0
0
73
S = int(input()) h = (S % 3600) t = (S % 60) s = (S - h - t) print(h:t:s)
s863396500
p02390
u671553883
1469512783
Python
Python3
py
Runtime Error
0
0
84
S = int(h = (S / 3600), m = (S % 3600 / 60), for S in range(0, 60) input()) print(S)
s674906924
p02390
u369313788
1469512791
Python
Python3
py
Runtime Error
0
0
59
S = input() print (S//3600,":",S%3600//60,":",S%60,sep="")
s049236058
p02390
u514745787
1469512811
Python
Python3
py
Runtime Error
0
0
73
S = int(input()) h = (S / 3600) t = (S / 60) s = (S - h - t) print(h:t:s)
s058557816
p02390
u514745787
1469512860
Python
Python3
py
Runtime Error
0
0
72
S = int(input()) h = (S / 3600) t = (S / 60) s = (S % 3600) print(h:t:s)
s438224776
p02390
u628732336
1469512977
Python
Python3
py
Runtime Error
0
0
26
int(input(h:4, m:0, s:0,))
s469449564
p02390
u498041957
1469512985
Python
Python3
py
Runtime Error
0
0
78
S = int(input()) s = S % 60 m = S // 60 % 60 h = S // 60 //60 ptint([0][1][2])
s742203138
p02390
u671553883
1469513000
Python
Python3
py
Runtime Error
0
0
98
S = 46797 a = int(h = (S / 3600), m = ((S % 3600) / 60), for s in range(0, 60) input()) print('a')
s214535002
p02390
u498041957
1469513029
Python
Python3
py
Runtime Error
0
0
91
S = int(input()) s = S % 60 m = S // 60 % 60 h = S // 60 //60 ptint([0][1][2].fomat(h,m,s))
s905307911
p02390
u671553883
1469513039
Python
Python3
py
Runtime Error
0
0
108
S = 46797 s = 46797 a = int(h = (S / 3600), m = ((S % 3600) / 60), for s in range(0, 60) input()) print('a')
s960227489
p02390
u671553883
1469513052
Python
Python3
py
Runtime Error
0
0
100
S = 46797 s = 46797 a = int(h = (S / 3600), m = ((S % 3600) / 60), for s in range(0, 60)) print('a')
s282377011
p02390
u671553883
1469513083
Python
Python3
py
Runtime Error
0
0
114
S = int(input()) s = int(input()) a = int(h = (S / 3600), m = ((S % 3600) / 60), for s in range(0, 60)) print('a')
s483711589
p02390
u628732336
1469513123
Python
Python3
py
Runtime Error
0
0
78
S = int(input()) print(S // 3600, ":", S % 3600 // 60, ":", S % 60, sep = "")
s691104965
p02390
u671553883
1469513131
Python
Python3
py
Runtime Error
0
0
125
S = int(input() S >= 10000) s = int(input()) a = int(h = (S / 3600), m = ((S % 3600) / 60), for s in range(0, 60)) print('a')
s679041020
p02390
u671553883
1469513173
Python
Python3
py
Runtime Error
0
0
126
S = int(input() S >= 10000) s = int(input()) a = int(h = (S / 3600), m = ((S % 3600) / 60), for s in range(0, 60):) print('a')
s862906067
p02390
u671553883
1469513277
Python
Python3
py
Runtime Error
0
0
133
S = int(input() S >= 10000) s = int(input()) a = int(h = (S / 3600), m = ((S % 3600) / 60), for s in range(0, 60):.split ) print('a')
s093315447
p02390
u600195957
1469513291
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)
s135292230
p02390
u600195957
1469513303
Python
Python3
py
Runtime Error
0
0
84
S = int(input()) h = S / 3600 m = (S % 3600) / 60 s = (S % 3600) % 60 print(h: m: s)
s643811443
p02390
u644636020
1469513335
Python
Python3
py
Runtime Error
0
0
114
S = int(input()) h = S // 3600 m = (S - S // 3600 * 3600) // 60 s = (S - S // 3600 * 3600) - m * 60 print(h:,m:,s)
s737630450
p02390
u757827098
1469513424
Python
Python3
py
Runtime Error
0
0
116
S =int(input()) h = int(S / 3600) m = int((S - h*3600)/60) s = int(S -(h*3600+m*60)) print(h,':',m,":",s seq == "")
s021584843
p02390
u757827098
1469513468
Python
Python3
py
Runtime Error
0
0
114
S =int(input()) h = int(S / 3600) m = int((S - h*3600)/60) s = int(S -(h*3600+m*60)) print(h,':',m,":",s sep ="")
s516548380
p02390
u498041957
1469513518
Python
Python3
py
Runtime Error
0
0
93
S = int(input()) s = S % 60 m = S // 60 % 60 h = S // 60 // 60 print([0][1][2].format(h,m,s))
s728365436
p02390
u671553883
1469513589
Python
Python3
py
Runtime Error
0
0
133
S = int(input() S >= 10000) s = int(input()) a = int(h = (S / 3600), m = ((S % 3600) / 60), for s in range(0, 60):.split ) print('a')
s355386712
p02390
u661284763
1469513633
Python
Python3
py
Runtime Error
0
0
93
s = int(input()) s = s % 60 m = s // 60 % 60 h = s // 60 // 60 print({0}{1}{2}.format(h,m,s))
s443069383
p02390
u671553883
1469513691
Python
Python3
py
Runtime Error
0
0
140
S = int(input() S >= 10000) s = int(input()) a = int(h = (S / 3600), m = ((S % 3600) / 60), for s in range(0, 60):.split ) print[a(h, m, s)]
s770685169
p02390
u671553883
1469513712
Python
Python3
py
Runtime Error
0
0
140
S = int(input() S >= 10000) s = int(input()) a = int(h = (S / 3600), m = ((S % 3600) / 60), for s in range(0, 60):.split ) print(a[h, m, s])
s458742090
p02390
u671553883
1469513763
Python
Python3
py
Runtime Error
0
0
140
S = int(input() S >= 10000) s = int(input()) a = int(h = (S / 3600), m = ((S % 3600) / 60), for s in range(0, 60):.split ) print(a['h:m:s'])
s163375520
p02390
u382316013
1469513901
Python
Python3
py
Runtime Error
0
0
69
S == int(input()) print(S // 3600 ":", (S % 3600) // 60 ":", S // 60)
s240694398
p02390
u498041957
1469513923
Python
Python3
py
Runtime Error
0
0
123
S = int(input()) s = S % 60 m = S // 60 % 60 h = S // 60 // 60 print(h,':',m,":",s ,") #print("{a}:{b}:{c}".format(h,m,s))
s548604776
p02390
u671553883
1469513927
Python
Python3
py
Runtime Error
0
0
135
import Sample Input S, s = Sample Input a = int(h = (S / 3600), m = ((S % 3600) / 60), for s in range(0, 60):.split ) print(a['h:m:s'])
s867605832
p02390
u085472528
1469513963
Python
Python3
py
Runtime Error
0
0
63
S = (int.input()) print(S // 3600 ,":",S // 3600,":",S % 3600 )
s479552040
p02390
u498041957
1469514017
Python
Python3
py
Runtime Error
0
0
123
S = int(input()) s = S % 60 m = S // 60 % 60 h = S // 60 // 60 print(h,':',m,":",s,' ) #print("{a}:{b}:{c}".format(h,m,s))
s689672830
p02390
u498041957
1469514032
Python
Python3
py
Runtime Error
0
0
122
S = int(input()) s = S % 60 m = S // 60 % 60 h = S // 60 // 60 print(h,':',m,":",s,') #print("{a}:{b}:{c}".format(h,m,s))
s012616969
p02390
u671553883
1469514085
Python
Python3
py
Runtime Error
0
0
133
import Sample Input S, s = Sample Input a = int(h = (S / 3600) += m = ((S % 3600) / 60) += for s in range(0, 60): .split ) print('a')
s606463908
p02390
u498041957
1469514131
Python
Python3
py
Runtime Error
0
0
124
S = int(input()) s = S % 60 m = S // 60 % 60 h = S // 60 // 60 print(h,':',m,":",s,""") #print("{a}:{b}:{c}".format(h,m,s))
s614455786
p02390
u600195957
1469514340
Python
Python3
py
Runtime Error
0
0
84
S = int(input()) h = S / 3600 m = (S % 3600) / 60 s = (S % 3600) % 60 print(h: m: s)
s019627557
p02390
u671553883
1469514403
Python
Python3
py
Runtime Error
0
0
110
import Sample Input S = Sample Input h = (S / 3600) m = (S / 60) s = (for S in range(0,60)) print('[h, m, s]')
s563095168
p02390
u671553883
1469514413
Python
Python3
py
Runtime Error
0
0
108
import Sample Input S = Sample Input h = (S / 3600) m = (S / 60) s = (for S in range(0,60)) print('h, m, s')
s262548640
p02390
u671553883
1469514446
Python
Python3
py
Runtime Error
0
0
106
import Sample Input S = Sample Input h = (S / 3600) m = (S / 60) s = (for S in range(0,60)) print('h:m:s')
s854688050
p02390
u382316013
1469514506
Python
Python3
py
Runtime Error
0
0
66
S == int(input()) print(S // 3600 ":" (S % 3600) // 60 ":" S % 60)
s243178652
p02390
u498041957
1469514663
Python
Python3
py
Runtime Error
0
0
99
S = int(input()) s = S % 60 m = S // 60 % 60 h = S // 60 // 60 print("{a}:{b}:{c}".format(h,m,s))
s528432026
p02390
u264632995
1469514779
Python
Python3
py
Runtime Error
0
0
95
s = int(input()) s = s % 60 n = s //60 % 60 h = s //60 //60 print("{0}:(1):(2)",format (h,m,s)
s402735036
p02390
u264632995
1469514846
Python
Python3
py
Runtime Error
0
0
98
S = int(input()) s = s % 60 m = s // 60 % 60 h = s // 60 // 60 print("{0}:(1):(2)",format (h,m,s)
s953274686
p02390
u264632995
1469514954
Python
Python3
py
Runtime Error
0
0
101
S = int(input() ) s = s % 60 m = s // 60 % 60 h = s // 60 // 60 print("{0}:{1}:{2}".format (h,m,s))
s395930464
p02390
u204883389
1469514972
Python
Python3
py
Runtime Error
0
0
99
s = int(input()) s = S % 60 m = S // 60 % 60 h = S // 60 // 60 print("{0}:{1}:{2}".format(h,m,s))
s421263916
p02390
u216425054
1470497621
Python
Python3
py
Runtime Error
0
0
61
S=input() h,r1=S//3600,S%3600 m,s=r1//60,r1%60 print("h:m:s")
s861781192
p02390
u216425054
1470497839
Python
Python3
py
Runtime Error
0
0
61
S=input() h,r1=S//3600,S%3600 m,s=r1//60,r1%60 print("h:m:s")
s492780293
p02390
u216425054
1470498839
Python
Python3
py
Runtime Error
0
0
61
n=input() h,r1=n//3600,n%3600 m,s=r1//60,r1%60 print("h:m:s")
s051638465
p02390
u216425054
1470499009
Python
Python3
py
Runtime Error
0
0
63
n=int(input()) print(":".join(map(str,[n/3600,n%3600/60,n%60]))
s883250214
p02390
u216425054
1470499080
Python
Python3
py
Runtime Error
0
0
59
S=input() print(':'.join(map(str,[S/3600,S%3600/60,S%60])))
s573961689
p02390
u216425054
1470499131
Python
Python3
py
Runtime Error
0
0
59
n=input() print(':'.join(map(str,[n/3600,n%3600/60,n%60])))
s573173787
p02390
u216425054
1470499171
Python
Python3
py
Runtime Error
0
0
59
n=input() print(':'.join(map(str,[n/3600,n%3600/60,n%60])))
s662998520
p02390
u788795188
1471684379
Python
Python3
py
Runtime Error
0
0
53
s=int(input()) m=s//60 h=s//3600 print(h,m,s,sec=":")
s316764860
p02390
u186194231
1471764610
Python
Python3
py
Runtime Error
0
0
73
s = int(input()) print("{0}:{1}:{2}".format(map(int, [s/3600, s/60, s])))
s361434748
p02390
u186194231
1471764805
Python
Python3
py
Runtime Error
0
0
88
s = int(input()) print("{0}:{1}:{2}".format(tuple(map(int, [s/3600, s%3600/60, s%60]))))
s453051370
p02390
u047093194
1473169092
Python
Python3
py
Runtime Error
0
0
48
a = int(input()) b = datetime(H:m:s, a) print(b)
s860326919
p02390
u362094064
1473313407
Python
Python3
py
Runtime Error
0
0
236
list = map(int,raw_input().split()) W = list[0] H = list[1] x = list[2] y = list[3] r = list[4] if x-r < 0: print "No" elif x + r > W: print "No" elif y-r < 0: print "No" elif y+r > H: print "No" else: print "Yes"
s328493710
p02390
u362094064
1473313460
Python
Python
py
Runtime Error
0
0
236
list = map(int,raw_input().split()) W = list[0] H = list[1] x = list[2] y = list[3] r = list[4] if x-r < 0: print "No" elif x + r > W: print "No" elif y-r < 0: print "No" elif y+r > H: print "No" else: print "Yes"
s486151638
p02390
u892219101
1473437302
Python
Python3
py
Runtime Error
0
0
67
a=int(input) b=a%3600 c=a//3600 d=b%60 e=b//60 print(c,":",e,":",d)
s745669482
p02390
u822442916
1474037012
Python
Python3
py
Runtime Error
0
0
58
h=S/3600 k=S%3600 m=k/60 s=k%60 print("%d:%d:%d" %(h,m,s))
s317843647
p02390
u620784458
1474807010
Python
Python3
py
Runtime Error
0
0
74
n=int(input) h=n//(60*60) a=n%3600 m=a//60 b=a%60 print(h+(":")+m+(":")+s)