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
s532495887
p02390
u657076895
1521605495
Python
Python3
py
Runtime Error
0
0
196
for line in sys.stdin: time = int(line) sec = time % 60 rest = time / 60 min = rest % 60 hour = rest / 60 print(str(int(hour)) + ":" + str(int(min)) + ":" + str(int(sec)))
s204462001
p02390
u621084859
1522370912
Python
Python3
py
Runtime Error
0
0
59
s=int(input()) print(s //60*60 +":"+s //60%60+":"s//60%60)
s129693573
p02390
u621084859
1522370948
Python
Python3
py
Runtime Error
0
0
59
s=int(input()) print(s //60*60 +":"+s //60%60+":"s//60%60)
s645669209
p02390
u621084859
1522371214
Python
Python3
py
Runtime Error
0
0
59
s=int(input()) print(s //60*60 +':'+s //60%60+':'s//60%60)
s345963895
p02390
u621084859
1522371427
Python
Python3
py
Runtime Error
0
0
49
t=int(input()) print(t//3600+':'t//60%60':'t%60)
s119302707
p02390
u621084859
1522373125
Python
Python3
py
Runtime Error
0
0
56
s=int(input()) print(S//3600 +":"+ s//60%60 +":"+ s%60)
s899933764
p02390
u621084859
1522373185
Python
Python3
py
Runtime Error
0
0
56
s=int(input()) print(S//3600 +":"+ s//60%60 +":"+ s%60)
s404086244
p02390
u621084859
1522373287
Python
Python3
py
Runtime Error
0
0
56
s=int(input()) print(S//3600 +":"+ s//60%60 +":"+ s%60)
s700920532
p02390
u621084859
1522373986
Python
Python3
py
Runtime Error
0
0
56
s=int(input()) print(S//3600 +":"+ s//60%60 +":"+ s%60)
s342838831
p02390
u621084859
1522374137
Python
Python3
py
Runtime Error
0
0
56
s=int(input()) print(S//3600 +":"+ s//60%60 +":"+ s%60)
s445830479
p02390
u621084859
1522374290
Python
Python3
py
Runtime Error
0
0
56
s=int(input()) print(S//3600 +":"+ s//60%60 +":"+ s%60)
s828350056
p02390
u621084859
1522375901
Python
Python3
py
Runtime Error
0
0
57
s=int(input()) print(s //3600 +":"+ S//60%60 +":"+ S%60)
s700433855
p02390
u621084859
1522376190
Python
Python3
py
Runtime Error
0
0
64
t=int(input()) h=t//3600 m=t//60%60 s=t%60 print(h+":"+m+":"+s)
s814837897
p02390
u621084859
1522376682
Python
Python3
py
Runtime Error
0
0
56
s=int(input()) print(S//3600 +":"+ s//60%60 +":"+ s%60)
s548829245
p02390
u621084859
1522379197
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)
s888136247
p02390
u967961232
1523086998
Python
Python
py
Runtime Error
0
0
246
public class Main { public static void main(String[] args) { t = int(raw_input()) h = t / 3600 m = (t - 3600 * h) / 60 s = t % 60 print('{0}:{1}:{2}'.format(h, m, s)) sc.close(); } }
s105038705
p02390
u244493040
1523183793
Python
Python3
py
Runtime Error
0
0
57
s=int(input()) print(s//(u=60)//u, s//u%u, s%u, sep=":")
s831700347
p02390
u781194524
1523334915
Python
Python
py
Runtime Error
0
0
59
x = int(input()) print(S//3600,(S%3600)//60,S//60,sep=':')
s450465833
p02390
u359372421
1523351260
Python
Python3
py
Runtime Error
0
0
86
x = input() s = x % 60 x //= 60 m = x % 60 x //= 60 print("{}:{}:{}".format(x, m, s))
s727268525
p02390
u843169619
1523435713
Python
Python3
py
Runtime Error
0
0
146
line = input().split() a = int(line[0]) b = int(line[1]) if a == b: print('a == b') elif a > b: print('a > b') else: print('a < b')
s112416412
p02390
u843169619
1523435875
Python
Python3
py
Runtime Error
0
0
146
line = input().split() a = int(line[0]) b = int(line[1]) if a == b: print('a == b') elif a > b: print('a > b') else: print('a < b')
s543623087
p02390
u843169619
1523436094
Python
Python3
py
Runtime Error
0
0
138
x = input() a = x.split(' ')[0] b = x.split(' ')[1] if a > b: print('a < b') elif a < b: print('a > b') else: print('a == b')
s682355468
p02390
u843169619
1523436112
Python
Python3
py
Runtime Error
0
0
172
x = input() a = x.split(' ')[0] b = x.split(' ')[1] if a > b: print('a > b') elif a < b: print('a < b') else: print('a == b')
s252337782
p02390
u843169619
1523436128
Python
Python3
py
Runtime Error
0
0
202
if __name__ == '__main__': x = input() a = x.split(' ')[0] b = x.split(' ')[1] if a > b: print('a > b') elif a < b: print('a < b') else: print('a == b')
s437832683
p02390
u843169619
1523436145
Python
Python3
py
Runtime Error
0
0
229
# -*- encoding: utf-8 -*- if __name__ == '__main__': x = input() a = x.split(' ')[0] b = x.split(' ')[1] if a > b: print('a > b') elif a < b: print('a < b') else: print('a == b')
s318743795
p02390
u843169619
1523436152
Python
Python
py
Runtime Error
0
0
229
# -*- encoding: utf-8 -*- if __name__ == '__main__': x = input() a = x.split(' ')[0] b = x.split(' ')[1] if a > b: print('a > b') elif a < b: print('a < b') else: print('a == b')
s667081790
p02390
u843169619
1523439117
Python
Python
py
Runtime Error
0
0
175
x = input() a = x.split(' ')[0] b = x.split(' ')[1] if a > b: print('a > b') elif a < b: print('a < b') else: print('a == b')
s777691235
p02390
u843169619
1523439133
Python
Python
py
Runtime Error
0
0
169
x = input() a = x.split()[0] b = x.split()[1] if a > b: print('a > b') elif a < b: print('a < b') else: print('a == b')
s429834128
p02390
u372207695
1523514607
Python
Python3
py
Runtime Error
0
0
139
i = int(iput()) if i/3600 != 0: h = i/3600 a = a - 3600 * h if i/60 != 0: m = i/3600 a = a - 60 * m print(h,":",m,":",a)
s475248051
p02390
u372207695
1523514622
Python
Python3
py
Runtime Error
0
0
140
i = int(input()) if i/3600 != 0: h = i/3600 a = a - 3600 * h if i/60 != 0: m = i/3600 a = a - 60 * m print(h,":",m,":",a)
s902997187
p02390
u372207695
1523514645
Python
Python3
py
Runtime Error
0
0
140
i = int(input()) if i/3600 != 0: h = i/3600 i = i - 3600 * h if i/60 != 0: m = i/3600 i = i - 60 * m print(h,":",m,":",a)
s269465178
p02390
u372207695
1523514667
Python
Python3
py
Runtime Error
0
0
153
i = int(input()) h = 0 m = 0 if i/3600 != 0: h = i/3600 i = i - 3600 * h if i/60 != 0: m = i/3600 i = i - 60 * m print(h,":",m,":",a)
s946757157
p02390
u372207695
1523514984
Python
Python3
py
Runtime Error
0
0
178
i = int(input()) h = 0 m = 0 if i/3600 > 1: h = int(i/3600) i = i - 3600 * h if i/60 > 1: m = int(i/60) i = i - 60 * m s = h + ":" + m + ":" + i print(s)
s217069508
p02390
u064313887
1523524714
Python
Python3
py
Runtime Error
0
0
96
S = double(input()) h = S / 3600 m = (S % 3600) / 60 s = (S % 3600) % 60 print(h,":",m,":",s)
s502589600
p02390
u064313887
1523525700
Python
Python3
py
Runtime Error
0
0
85
x = int(input()) h = x // 3600 m = x % 3600 // 60 s = x % 60 print(h,m,s,sep=':")
s188762049
p02390
u064313887
1523525714
Python
Python3
py
Runtime Error
0
0
85
x = int(input()) h = x // 3600 m = x % 3600 // 60 s = x % 60 print(h,m,s,sep=':")
s020307344
p02390
u165447384
1523805363
Python
Python3
py
Runtime Error
0
0
60
x = int( input() ) print(x//3600+":"+(x%3600)//60+":"+x%60)
s887306093
p02390
u165447384
1523886028
Python
Python3
py
Runtime Error
0
0
58
x = int(input()) print(x//3600+":"+(x//60)%60+":"+(x%60))
s360897215
p02390
u592529978
1523948096
Python
Python
py
Runtime Error
0
0
42
s=input() print (s/3600 : s/60%60 : s%60)
s096062981
p02390
u074747865
1524121486
Python
Python3
py
Runtime Error
0
0
76
S = int(input()) h = S//3600 s = S%60 m = (S - 3600*h - s)//60 print(h:m:s)
s807735493
p02390
u074747865
1524121781
Python
Python3
py
Runtime Error
0
0
56
S = int(input()) print(S//3600, S//60%60, S%60, sep":")
s590683847
p02390
u485986915
1524215743
Python
Python3
py
Runtime Error
0
0
79
s =int(input()) int h = s/3600 int m = (s/60)%60 int sec = s%60 print(h:m:sec)
s667653409
p02390
u485986915
1524215882
Python
Python3
py
Runtime Error
0
0
81
s =int(input()) int h = s/3600 int m = (s/60)%60 int sec = s%60 print("h:m:sec")
s202243147
p02390
u836133197
1524487191
Python
Python3
py
Runtime Error
0
0
98
s = input() a, b = divmod(s, 60) h, m = divmod(a, 60) print("{02d}:{02d}:{02d}".format(h, m, b))
s217235734
p02390
u836133197
1524838464
Python
Python3
py
Runtime Error
0
0
192
#include <stdio.h> int main() { int s; scanf("%d", &s); int a = int(s / 60); int b = int(a / 60); int c = int(b / 60); printf("%d:%d:%d\n", a, b, c); return 0; }
s693415043
p02390
u836133197
1524838556
Python
Python3
py
Runtime Error
0
0
231
#include <stdio.h> int main() { int s; scanf("%d", &s); int a = static_cast<int>(s / 60); int b = static_cast<int>(a / 60); int c = static_cast<int>(b / 60); printf("%d:%d:%d\n", a, b, c); return 0; }
s883921006
p02390
u836133197
1524838810
Python
Python3
py
Runtime Error
0
0
202
#include <stdio.h> int main() { int s; scanf("%d", &s); double a = s / 3600; double b = a / 60; double c = b / 60; printf("%d:%d:%d\n", int(a), int(b), int(c)); return 0; }
s162464894
p02390
u147527299
1525441904
Python
Python3
py
Runtime Error
0
0
53
S=int(input()) print(S//3600,S//60%60,S//60 ,sep":")
s729749472
p02390
u067299340
1525927270
Python
Python3
py
Runtime Error
0
0
80
seconds = int(input()) print(":".join(seconds/60/24,seconds/60%24, seconds%60))
s344569349
p02390
u067299340
1525927315
Python
Python3
py
Runtime Error
0
0
82
seconds = int(input()) print(":".join([seconds/60/24,seconds/60%24, seconds%60]))
s558657447
p02390
u500257793
1525949558
Python
Python3
py
Runtime Error
0
0
52
x=input() print(x/3600,x%3600/60,x%3600%60,sep=":")
s209587212
p02390
u500257793
1526730376
Python
Python3
py
Runtime Error
0
0
95
S=map(int,input()) h=(int)(S/3600) m=(int)(S%3600/60) s=(int)(S%3600%60) print(f"{h}:{m}:{s}")
s433936691
p02390
u500257793
1526730444
Python
Python3
py
Runtime Error
0
0
89
S=map(int,input()) h=(int)S/3600 m=(int)S%3600/60 s=(int)S%3600%60 print(f"{h}:{m}:{s}")
s258428306
p02390
u237094818
1527359893
Python
Python
py
Runtime Error
0
0
123
# -*- coding:utf-8 X = input() H = X // 3600 M = (X - H*3600) // 60 S = (X - H*3600) % 60 print('%s:%d:%m' % (H,M,S))
s671660384
p02390
u884342371
1527406436
Python
Python3
py
Runtime Error
0
0
125
S = int(input()) h = int(a/3600) m = int( (S - h*3600)/60 ) s = int( (S - h*3600 - m*60)/60 ) print("%d:%d:%d", %(h, m, s))
s185187504
p02390
u884342371
1527406531
Python
Python3
py
Runtime Error
0
0
118
S = int(input()) h = int(a/3600) m = int( (S - h*3600)/60 ) s = int(S - h*3600 - m*60) print("%d:%d:%d", %(h, m, s))
s679871170
p02390
u884342371
1527406604
Python
Python3
py
Runtime Error
0
0
113
S = int(input()) h = int(a/3600) l = S - h*3600 m = int( l/60 ) s = int(l - m*60) print("%d:%d:%d", %(h, m, s))
s827505380
p02390
u884342371
1527406643
Python
Python3
py
Runtime Error
0
0
113
S = int(input()) h = int(S/3600) l = S - h*3600 m = int( l/60 ) s = int(l - m*60) print("%d:%d:%d", %(h, m, s))
s830107300
p02390
u966110132
1527450216
Python
Python3
py
Runtime Error
0
0
98
a = input() h = int(a/3600) b = a - h*3600 m = int(b/60) c = b - m*60 print(h + ":"+ m + ":" + c)
s327971504
p02390
u966110132
1527450603
Python
Python3
py
Runtime Error
0
0
52
a = input() print(a//3600, a//60%60, x%60, sep=":")
s873254095
p02390
u726789377
1527516341
Python
Python3
py
Runtime Error
0
0
125
S = input() h = S / 3600 m = (S % 3600) / 60 s = (S % 3600) % 60) print(str(int(h)) + ':' + str(int(m)) + ':' + str(s))
s572821297
p02390
u745214779
1527641276
Python
Python3
py
Runtime Error
0
0
52
s = input() m = s/60 h = m/60 print (h, :, m, :, s)
s524963058
p02390
u745214779
1527642282
Python
Python3
py
Runtime Error
0
0
150
s = input() s = int(s) int h = 0 int m = 0 int ss = 0 while(s >= 3600){ s -= 3600; h++ } while(s >= 60){ s -= 60; m++ } ss = s; print (h, :, m, :, s)
s118147242
p02390
u745214779
1527642403
Python
Python3
py
Runtime Error
0
0
170
int main(){ int s; int h,m,g; scanf("%d",&in); h = s / 3600; s %= 3600; m = s / 60; s %= 60; g = s; printf("%d:%d:%d\n",h,m,g); }
s411167648
p02390
u763301852
1527777990
Python
Python3
py
Runtime Error
0
0
89
t = input() h = t // 3600 m = (t % 3600) // 60 s = t % 60 print("%d:%d:%d" % (h, m, s))
s711691986
p02390
u227344542
1528267961
Python
Python3
py
Runtime Error
0
0
107
S=int(input()) h = s//3600 m = (s-h*3600)//60 s = (S-(h*3600)-(m*60)) print (str(h)+":"+str(m)+":"+str(s))
s987354489
p02390
u227344542
1528268095
Python
Python3
py
Runtime Error
0
0
107
S=int(input()) h = s//3600 m = (s-h*3600)//60 s = (S-(h*3600)-(m*60)) print (str(h)+":"+str(m)+":"+str(s))
s972761811
p02390
u227344542
1528268369
Python
Python3
py
Runtime Error
0
0
92
S=int(input()) h = s//3600 m = (s-h*3600)//60 s = (S-(h*3600)-(m*60)) print (h,m,s,sep=":")
s604817800
p02390
u986523878
1529413119
Python
Python3
py
Runtime Error
0
0
120
sec=int(input()) h=inr(sec/3600) m=int((sec-(3600*h))/60) s=int(sec-(3600*h)-(60*m)) print("{0}:{1}:{2}".format(h,m,s))
s535984518
p02390
u987236471
1530465277
Python
Python3
py
Runtime Error
0
0
81
S = int(input()) h = S // 3600 m = S // 60 -S // 3600 s = S // 60 print(h:m:s)
s564019253
p02390
u987236471
1530465302
Python
Python3
py
Runtime Error
0
0
85
S = int(input()) h = S // 3600 m = S // 60 -S // 3600 s = S // 60 print(h":"m":"s)
s478357406
p02390
u987236471
1530465758
Python
Python3
py
Runtime Error
0
0
79
S = int(input()) h = S//3600 m = (S//60)-(S//3600) s = S//60 print(h,:,m,:,s)
s583170591
p02390
u987236471
1530465780
Python
Python3
py
Runtime Error
0
0
79
S = int(input()) h = S//3600 m = (S//60)-(S//3600) s = S//60 print(h,:,m,:,s)
s836743633
p02390
u987236471
1530465834
Python
Python3
py
Runtime Error
0
0
81
S = int(input()) h = S//3600 m = (S//60)-(S//3600) s = S//60 print(h,:,m,:,s)
s271645441
p02390
u987236471
1530466010
Python
Python3
py
Runtime Error
0
0
83
S = int(input()) h = S//3600 m = (S//60)-(S//3600) s = S//60 p = h:m:s print(p)
s096400139
p02390
u987236471
1530466222
Python
Python3
py
Runtime Error
0
0
82
S = int(input()) h = S//3600 m = (S//60)-(S//3600) s = S//60 print(h':'m':'s)
s213994693
p02390
u987236471
1530466230
Python
Python3
py
Runtime Error
0
0
81
S = int(input()) h = S//3600 m = (S//60)-(S//3600) s = S//60 print(h':'m':'s)
s206272809
p02390
u987236471
1530466243
Python
Python3
py
Runtime Error
0
0
79
S = int(input()) h = S//3600 m = (S//60)-(S//3600) s = S//60 print(h':'m':'s)
s212042070
p02390
u987236471
1530466300
Python
Python3
py
Runtime Error
0
0
75
S = int(input()) h = S//3600 m = (S//60)-(S//3600) s = S//60 print(h:m:s)
s843540040
p02390
u987236471
1530466376
Python
Python3
py
Runtime Error
0
0
98
S = int(input()) h = S//3600 m = (S//60)-(S//3600) a = str(h) b = str(m) c = str(s) print(a:b:c)
s847119023
p02390
u987236471
1530466386
Python
Python3
py
Runtime Error
0
0
100
S = int(input()) h = S//3600 m = (S//60)-(S//3600) a = str(h) b = str(m) c = str(s) print("a:b:c")
s006577323
p02390
u987236471
1530466619
Python
Python3
py
Runtime Error
0
0
117
S = int(input()) h = S//3600 m = (S//60)-60*(S//3600) s = S//60 a = str(h) b = str(m) c = str(s) print("a":"b":"c")
s806303951
p02390
u987236471
1530466627
Python
Python
py
Runtime Error
0
0
117
S = int(input()) h = S//3600 m = (S//60)-60*(S//3600) s = S//60 a = str(h) b = str(m) c = str(s) print("a":"b":"c")
s842455754
p02390
u987236471
1530466818
Python
Python3
py
Runtime Error
0
0
97
S = int(input()) h = S//3600 m = (S//60)-60*(S//3600) s = S//60 print('{}:{}:{}'.format(him,s))
s589644815
p02390
u917722865
1530702311
Python
Python3
py
Runtime Error
0
0
153
second = input() second = (int)second h = second // 3600 m = (second % 3600) // 60 s = (second % 3600) % 60 print("{0:02}:{1:02}:{2:02}".format(h,m,s))
s280808237
p02391
u138628845
1531278101
Python
Python3
py
Runtime Error
0
0
134
a = input().split() elif a[0] < a[1]: print('a < b') elif a[0] > a[1]: print('a > b') elif a[0] == a[1]: print('a == b')
s875306317
p02391
u260169299
1535143764
Python
Python3
py
Runtime Error
0
0
330
import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner input = new Scanner(System.in); int a = input.nextInt(); int b = input.nextInt(); String output = ""; if (a-b > 0) { output = "a > b"; } else if(a-b<0){ output = "a < b"; } else { output = "a == b"; } System.out.println(output); } }
s291935661
p02391
u883600689
1535277512
Python
Python3
py
Runtime Error
0
0
110
a,b=[int(x) for x in input().split()] if a<b: print('a<b') elif a>b: print('a>b') elif a==b: print('a==b')
s594227949
p02391
u883600689
1535278042
Python
Python3
py
Runtime Error
0
0
105
a,b=[int(x) for x in input().split()] if a<b: print('a<b') elif a>b: print('a>b') else: print('a==b')
s681293635
p02391
u580227385
1535447680
Python
Python3
py
Runtime Error
0
0
163
a, b = map(int, input().split()) if a > b: print(str(a) + " > " + str(b)) if a < b: print(str(a) + " < " + str(b)) if: print(str(a) + " == " + str(b))
s080207549
p02391
u254148695
1540290339
Python
Python3
py
Runtime Error
0
0
137
a = int(input("a:")) b = int(input("b:")) if a == b: print("a == b") elif a > b: print("a > b") elif a < b: print("a < b")
s544135195
p02391
u254148695
1540290477
Python
Python
py
Runtime Error
0
0
137
a = int(input("a:")) b = int(input("b:")) if a == b: print("a == b") elif a > b: print("a > b") elif a < b: print("a < b")
s018223379
p02391
u184749404
1540384328
Python
Python3
py
Runtime Error
0
0
63
a,b =(int(i) for i in input.split()) if a>b: print("a > b")
s101756253
p02391
u184749404
1540384519
Python
Python3
py
Runtime Error
0
0
118
a,b =(int(i) for i in input.split()) if a > b: print("a > b") if a == b: print("a == b") if a > b: print("a > b")
s890802871
p02391
u184749404
1540384562
Python
Python3
py
Runtime Error
0
0
124
a,b =(int(i) for i in input.split()) if a > b: print("a > b") if a == b: print("a == b") if a > b: print("a > b") elif
s267293240
p02391
u184749404
1540384606
Python
Python3
py
Runtime Error
0
0
123
a,b =(int(i) for i in input.split()) if a > b: print("a > b") elif a == b: print("a == b") elif a > b: print("a > b")
s376410527
p02391
u184749404
1540384711
Python
Python3
py
Runtime Error
0
0
123
a,b =(int(i) for i in input.split()) if a > b: print("a > b") elif a == b: print("a == b") else a < b: print("a < b")
s837490617
p02391
u184749404
1540384739
Python
Python3
py
Runtime Error
0
0
118
a,b =(int(i) for i in input.split()) if a > b: print("a > b") elif a == b: print("a == b") else , print("a < b")
s285856551
p02391
u184749404
1540384748
Python
Python3
py
Runtime Error
0
0
118
a,b =(int(i) for i in input.split()) if a > b: print("a > b") elif a == b: print("a == b") else : print("a < b")
s698794488
p02391
u184749404
1540384800
Python
Python3
py
Runtime Error
0
0
121
a,b =map(int(i) for i in input.split()) if a > b: print("a > b") elif a == b: print("a == b") else : print("a < b")