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
s513331984
p02396
u156091054
1488783301
Python
Python3
py
Runtime Error
0
0
133
import sys while True: x = sys.stdin.readline().strip() if x == "0": break print("Case %d: %s"%(i, x)) i += 1
s936162753
p02396
u897625141
1489467947
Python
Python3
py
Runtime Error
0
0
125
a = [] count = 0 while True: count += 1 n = input() if n == 0: break print("Case "+str(count)+": "+n)
s411513426
p02396
u721446434
1489885122
Python
Python3
py
Runtime Error
0
0
122
i = 1 while True: hoge = input() if hoge == "": break print("Case " + str(i) + ": " + hoge) i += 1
s002423294
p02396
u721446434
1489885166
Python
Python3
py
Runtime Error
0
0
122
i = 1 while True: hoge = input() if hoge == "": break print("Case " + str(i) + ": " + hoge) i += 1
s850321341
p02396
u679055873
1490234278
Python
Python3
py
Runtime Error
0
0
155
set = list(map(int,input().split())) index = 0 next = set[index] while next: print("Case "+str(index)+": "+str(set[index])) index += 1 next = set[index]
s099440659
p02396
u679055873
1490239929
Python
Python3
py
Runtime Error
0
0
121
import sys cnt = 1 while 1: x = sys.stdin.readline().strip() if x == '0' break; print("Case %d: %s"%(cnt,x)) cnt+=1
s239218036
p02396
u679055873
1490240034
Python
Python3
py
Runtime Error
0
0
121
import sys cnt = 1 while 1: x = sys.stdin.readline().strip() if x == '0' break; print("Case %d: %s"%(cnt,x)) cnt+=1
s412433628
p02396
u042882066
1490690875
Python
Python3
py
Runtime Error
0
0
113
count = 0 while True : if x == 0 : break x = int(input()) count += 1 print("Case {}: {}".format(count,x))
s537682462
p02396
u042882066
1490690875
Python
Python3
py
Runtime Error
0
0
113
count = 0 while True : if x == 0 : break x = int(input()) count += 1 print("Case {}: {}".format(count,x))
s727103903
p02396
u042882066
1490691093
Python
Python3
py
Runtime Error
0
0
114
count = 0 while True : x = int(input()) count += 1 if x == 0 : break print("Case { }: { }".format(count, x))
s158187284
p02396
u042882066
1490691094
Python
Python3
py
Runtime Error
0
0
114
count = 0 while True : x = int(input()) count += 1 if x == 0 : break print("Case { }: { }".format(count, x))
s137778762
p02396
u042882066
1490691128
Python
Python3
py
Runtime Error
0
0
116
count = 0 while True : x = int(input()) count += 1 if x == 0 : break print("Case { }: { }".format(count, x))
s691138543
p02396
u042882066
1490691258
Python
Python3
py
Runtime Error
0
0
109
i = 0 while True: n = int(input()) i += 1 if n == 0:break print("Case {}: {}".format(i, n))
s956088545
p02396
u042882066
1490691294
Python
Python3
py
Runtime Error
0
0
111
i = 0 while True: n = int(input()) if n == 0:break i += 1 print("Case {}: {}".format(i, n))
s052328440
p02396
u042882066
1490691318
Python
Python3
py
Runtime Error
0
0
93
i = 0 while True: n = int(input()) if n == 0:break print("Case {}: {}".format(i, n)) i += 1
s874491444
p02396
u042882066
1490691328
Python
Python3
py
Runtime Error
0
0
99
i = 0 while True: n = int(input()) if n == 0:break print("Case {}: {}".format(i, n)) i += 1
s917962137
p02396
u042882066
1490691336
Python
Python3
py
Runtime Error
0
0
102
i = 0 while True: n = int(input()) if n == 0:break print("Case {}: {}".format(i, n)) i += 1
s903703478
p02396
u042882066
1490691404
Python
Python3
py
Runtime Error
0
0
103
i = 0 while True: n = int(input()) if n == 0:break print("Case {}: {}".format(i, n)) i += 1
s074447958
p02396
u606989659
1490864922
Python
Python3
py
Runtime Error
0
0
96
N = input() a = [] for i in range(N): a.append(input()) print('case'{}':'{}.format(N,a))
s439003495
p02396
u606989659
1490865120
Python
Python3
py
Runtime Error
0
0
94
N = input() a = [] for i in range(N): a.append(input()) print('case{}:{}'.format(N,a))
s810064914
p02396
u606989659
1490867189
Python
Python3
py
Runtime Error
0
0
94
x = input() a = [] for i in range(N): a.append(input()) print('case{}:{}'.format(x,a))
s350047297
p02396
u606989659
1491025172
Python
Python3
py
Runtime Error
0
0
129
import sys i = 1 while True: x = sys.stdin.read() if x == 0: break print('Case {}: {}'.format(i,x)) x + 1
s878659304
p02396
u606989659
1491025506
Python
Python3
py
Runtime Error
0
0
137
import sys i = 1 while True: x = sys.stdin.read() if x.strip() == 0: break print('Case {}: {}'.format(i,x)) x + 1
s769757049
p02396
u606989659
1491045263
Python
Python3
py
Runtime Error
0
0
153
l = [] while True: x = input() if x == 0: break l.append(x) y = l.index(x) + 1 print('Case {}: {}'.format(y,x)) y + 1
s560337050
p02396
u606989659
1491045645
Python
Python3
py
Runtime Error
0
0
133
l = [] y = 1 while True: x = input() if x == 0: break l.append(x) print('Case {}: {}'.format(y,x)) y += 1
s022182643
p02396
u382692819
1491290021
Python
Python3
py
Runtime Error
0
0
131
s = input.readline() i=1 while True: print("case {0}: {1}".format(i,s)) i += 1 s = input() if s=="0": break
s524310438
p02396
u382692819
1491290135
Python
Python3
py
Runtime Error
0
0
217
with open ('in1.txt', 'r', encoding='utf8') as input: s = input.readline() i=1 while True: print("case {0}: {1}".format(i,s)) i += 1 s = input() if s=="0": break
s982715039
p02396
u884445603
1492577703
Python
Python3
py
Runtime Error
0
0
152
while True: l = sorted([int(x) for x in input().split()]) if l[0] == 0 and l[1] == 0: break l.sort() print(" ".join(map(str,l)))
s012322297
p02396
u244790947
1493002008
Python
Python3
py
Runtime Error
0
0
195
inputs = [] for i in range(10000) : inputraw = input() if inputraw == '0' : break inputs.append(inputraw) for i, input in enumerate(inputs) : print("Case "+str(i)+": "+ str(input)+"\n"))
s622571090
p02396
u645985665
1493598495
Python
Python3
py
Runtime Error
0
0
154
import sys count = 1 while true: x = sys.stdin.readline().strip() if x == 0: break print("Case {}: {}".format(count,x)) count += 1
s000808132
p02396
u650790815
1495628651
Python
Python3
py
Runtime Error
0
0
147
import sys cnt = 1 while 1: x = sys.stdin.readline().strip() if x == '0': break; print('Case {}:{}').format(cnt,x) cnt += 1
s759277555
p02396
u650790815
1495628820
Python
Python3
py
Runtime Error
0
0
147
import sys cnt = 1 while 1: x = sys.stdin.readline().strip() if x == '0': break; print('Case {}:{}').format(cnt,x) cnt += 1
s961743556
p02396
u440180827
1496135807
Python
Python3
py
Runtime Error
0
0
93
i = 1 x = input() while x: print('Case {0}: {1}'.format(i, x)) x = input() i += 1
s595081441
p02396
u675844759
1496812073
Python
Python3
py
Runtime Error
0
0
146
cnt = 1 num = sys.stdin.readline().strip() while num != "0": print("Case "+ cnt + ": " num) cnt+=1 num = sys.stdin.readline().strip()
s723202722
p02396
u675844759
1496812096
Python
Python3
py
Runtime Error
0
0
157
import sys cnt = 1 num = sys.stdin.readline().strip() while num != "0": print("Case "+ cnt + ": " num) cnt+=1 num = sys.stdin.readline().strip()
s515468386
p02396
u675844759
1496812749
Python
Python3
py
Runtime Error
0
0
99
import sys for i, num in enumerate(sys.stdin.read().splitlines()) print("Case "+ i + ": " + num)
s799074539
p02396
u675844759
1496812932
Python
Python3
py
Runtime Error
0
0
100
import sys for i, num in enumerate(sys.stdin.read().splitlines()): print("Case "+ i + ": " + num)
s098285680
p02396
u675844759
1496812953
Python
Python3
py
Runtime Error
0
0
101
import sys for i, num in enumerate(sys.stdin.read().splitlines()): print("Case "+ i + ": " + num)
s693379220
p02396
u675844759
1496813501
Python
Python3
py
Runtime Error
0
0
50
import sys for i in sys.stdin.read().splitlines()
s395952040
p02396
u675844759
1496813676
Python
Python3
py
Runtime Error
0
0
64
import sys array = sys.stdin.read().splitlines() for i in array
s314770391
p02396
u675844759
1496814187
Python
Python3
py
Runtime Error
0
0
101
import sys for i, num in enumerate(sys.stdin.read().splitlines()): print("Case "+ i + ": " + num)
s012246499
p02396
u675844759
1496814625
Python
Python3
py
Runtime Error
0
0
134
import sys cnt = 1 while 1 num=sys.stdin.readline().strip() if num = "0": break; print('Case {0}: {1}'.format(cnt, num)) cnt+=1
s697780099
p02396
u675844759
1496814651
Python
Python3
py
Runtime Error
0
0
133
import sys cnt = 1 while 1 num=sys.stdin.readline().strip() if num = "0": break print('Case {0}: {1}'.format(cnt, num)) cnt+=1
s021218051
p02396
u675844759
1496814687
Python
Python3
py
Runtime Error
0
0
134
import sys cnt = 1 while 1: num=sys.stdin.readline().strip() if num = "0": break print('Case {0}: {1}'.format(cnt, num)) cnt+=1
s716180733
p02396
u675844759
1496814774
Python
Python3
py
Runtime Error
0
0
135
import sys cnt = 1 while 1 num=sys.stdin.readline().strip() if num == "0": break; print('Case {0}: {1}'.format(cnt, num)) cnt+=1
s652458552
p02396
u239524997
1497162526
Python
Python
py
Runtime Error
0
0
97
a = 1 x = input() for i in x: if i ==0: continue print('Case',a,':',x) a += 1
s476989497
p02396
u050103511
1497513378
Python
Python3
py
Runtime Error
0
0
120
x = list(int(input()) for i in range(x): for a in x: if x == 0: break print("Case"+" "+i+":"+x)
s298467293
p02396
u050103511
1497513524
Python
Python3
py
Runtime Error
0
0
133
x = list(int(input()) for i in range(len(x)): for a in x: if x == 0: break print("Case {0}: {1}".format(i,a))
s707491988
p02396
u050103511
1497513577
Python
Python3
py
Runtime Error
0
0
132
x = list(int(input)) for i in range(len(x)): for a in x: if x == 0: break print("Case {0}: {1}".format(i,a))
s324963089
p02396
u627002197
1497614440
Python
Python3
py
Runtime Error
0
0
163
N = input() input_data = [input() for i in range(N)] num = 0 while input_data[num] > 0 : print("Case","{0}:".format(num+1),"{1}".format(input_data[num])) num+=1
s402534061
p02396
u627002197
1497614468
Python
Python3
py
Runtime Error
0
0
167
N = input() input_data = [input() for i in range(N)]  num = 0 #while input_data[num] > 0 : # print("Case","{0}:".format(num+1),"{1}".format(input_data[num])) # num+=1
s697858639
p02396
u627002197
1497614477
Python
Python3
py
Runtime Error
0
0
168
N = input() input_data = [input() for i in range(N)]  #num = 0 #while input_data[num] > 0 : # print("Case","{0}:".format(num+1),"{1}".format(input_data[num])) # num+=1
s862425158
p02396
u627002197
1497614494
Python
Python3
py
Runtime Error
0
0
169
N = input() #input_data = [input() for i in range(N)]  #num = 0 #while input_data[num] > 0 : # print("Case","{0}:".format(num+1),"{1}".format(input_data[num])) # num+=1
s998473974
p02396
u627002197
1497614506
Python
Python3
py
Runtime Error
0
0
170
#N = input() #input_data = [input() for i in range(N)]  #num = 0 #while input_data[num] > 0 : # print("Case","{0}:".format(num+1),"{1}".format(input_data[num])) # num+=1
s252941126
p02396
u200401481
1497808533
Python
Python3
py
Runtime Error
0
0
66
i = 1 while a = input() != 0: print("Case "+str(i)+": "+str(a))
s559051068
p02396
u200401481
1497808610
Python
Python3
py
Runtime Error
0
0
75
i = 1 a = 1 while a != 0: a = input() print("Case "+str(i)+": "+str(a))
s473056724
p02396
u050103511
1498029145
Python
Python3
py
Runtime Error
0
0
150
x = int(input()) a = 1 for i in x: if i == 0: break print("Case {0}: {1}".format(a,i) a += 1
s834356795
p02396
u050103511
1498029163
Python
Python3
py
Runtime Error
0
0
151
x = int(input()) a = 1 for i in x: if i == 0: break print("Case {0}: {1}".format(a,i)) a += 1
s433919804
p02396
u050103511
1498029226
Python
Python3
py
Runtime Error
0
0
151
x = int(input()) a = 1 for i in x: if i == 0: break print("Case { }: { }".format(a,i)) a += 1
s454259285
p02396
u050103511
1498029262
Python
Python3
py
Runtime Error
0
0
149
x = int(input()) a = 1 for i in x: if i == 0: break print("Case {}: {}".format(a,i)) a += 1
s714952309
p02396
u050103511
1498030293
Python
Python3
py
Runtime Error
0
0
177
import sys a = 1 While 1: x = sys.stdin.readline().strip() if x == 0: break; print("Case {0}: {1}".format(a,x)) a += 1
s664012605
p02396
u050103511
1498030385
Python
Python3
py
Runtime Error
0
0
180
import sys a = 1 While 1: x = sys.stdin.readline().strip() if x == "0": break; print("Case {0}: {1}".format(a,x)) a += 1
s168294854
p02396
u050103511
1498030446
Python
Python3
py
Runtime Error
0
0
178
import sys a = 1 While 1: x = sys.stdin.readline().strip() if x == 0: break; print("Case {0}: {1}".format(a,x)) a += 1
s240162969
p02396
u050103511
1498030694
Python
Python3
py
Runtime Error
0
0
145
import sys a = 1 for x in sys.stdin.strip(): if x == "0": break; print("Case {}: {}".format(a,x)) a += 1
s259790616
p02396
u050103511
1498030710
Python
Python3
py
Runtime Error
0
0
157
import sys a = 1 for x in sys.stdin.readlines().strip(): if x == "0": break; print("Case {}: {}".format(a,x)) a += 1
s665306996
p02396
u569585396
1498090389
Python
Python3
py
Runtime Error
0
0
104
x = input().split() num = Case for i in range(1,10001): print("{} i : {}".format(num,x)) i += 1
s885194801
p02396
u569585396
1498091161
Python
Python3
py
Runtime Error
0
0
108
x = input().split() num = Case for i in range(1,10001): print("{} {} : {}".format(num,i,x)) i += 1
s104715254
p02396
u569585396
1498091706
Python
Python3
py
Runtime Error
0
0
108
x = input().strip() num = Case for i in range(1,10001): print("{} {} : {}".format(num,i,x)) i += 1
s677874516
p02396
u569585396
1498092596
Python
Python3
py
Runtime Error
0
0
146
n = int(input()) e = [[int(i) for i in input().split()] for i in range(n)] z = Case for i in range(1,10001): print('{} {} : {}',format(z,i,e))
s679560437
p02396
u569585396
1498092935
Python
Python3
py
Runtime Error
0
0
134
x = input() y = [input() for i + 1 in range(x)] z = y.split() s = Case for a in ragen(1,10001): print('{} {} : {}',format(s,a,z))
s207613694
p02396
u569585396
1498093380
Python
Python3
py
Runtime Error
0
0
146
x = input() y = [input() for i + 1 in range(x)] z = y.split() s = Case for a in range(1,10001): print('{} {} : {}',format(s,a,z)) a += 1
s662063342
p02396
u569585396
1498093795
Python
Python3
py
Runtime Error
0
0
165
x = input() y = [input() for i + 1 in range(x)] z = y.split() s = Case count = 1 for a in range(1,10001): print('{} {} : {}',format(s,count,z)) count += 1
s242203091
p02396
u569585396
1498094136
Python
Python3
py
Runtime Error
0
0
136
x = [input() for i in range(10001)] y = x.split() s = Case for a in range(1, 10001): print('{} {} : {}'.format(s,a,y)) a += 1
s512362848
p02396
u569585396
1498094536
Python
Python3
py
Runtime Error
0
0
150
x = int(input()) X = [input() for i in range(x)] y = X.split() s = Case for a in range(1, 10001): print('{} {} : {}'.format(s,a,y)) a += 1
s042991471
p02396
u569585396
1498094821
Python
Python3
py
Runtime Error
0
0
91
i = 1 while True: x = int(input()) print('Case {} : {}'.format(i, x)) i += 1
s515884360
p02396
u569585396
1498094940
Python
Python3
py
Runtime Error
0
0
117
i = 1 while True: x = int(input()) if x == 0 break: print('Case {} : {}'.format(i, x)) i += 1
s436698486
p02396
u569585396
1498095021
Python
Python3
py
Runtime Error
0
0
113
i = 1 while True: x = int(input()) if x == 0 break: print('Case {} : {}'.format(i, x)) i += 1
s082827731
p02396
u569585396
1498095073
Python
Python3
py
Runtime Error
0
0
112
i = 1 while True: x = int(input()) if x == 0 break: print('Case {}: {}'.format(i, x)) i += 1
s641747259
p02396
u890164142
1498195005
Python
Python3
py
Runtime Error
0
0
93
for i in range(10000) x = int(input()) if x == 0: break print("Case %d: %d" % (i+1, x))
s114020533
p02396
u692161606
1498283709
Python
Python3
py
Runtime Error
0
0
30
print 'Case i: {0}'.format(x)
s601522831
p02396
u692161606
1498283908
Python
Python3
py
Runtime Error
0
0
58
if x >= 1 and x <=10000: print 'Case i: {0}'.format(x)
s678689265
p02396
u692161606
1498284018
Python
Python3
py
Runtime Error
0
0
60
if x >= 1 and x <=10000: print ('Case i: {0}'.format(x))
s888582022
p02396
u395668439
1498377675
Python
Python3
py
Runtime Error
0
0
70
i,x=1,input() while x !='0': print(f"Case {i}: {x}") i,x=i+1,input()
s579658588
p02396
u395668439
1498377918
Python
Python3
py
Runtime Error
0
0
101
l=lambda: sys.stdin.readline().strip() i,x=1,l() while x !='0': print(f"Case {i}: {x}") i,x=i+1,l()
s375427357
p02396
u395668439
1498377930
Python
Python3
py
Runtime Error
0
0
112
import sys l=lambda: sys.stdin.readline().strip() i,x=1,l() while x !='0': print(f"Case {i}: {x}") i,x=i+1,l()
s049849624
p02396
u169794024
1498528066
Python
Python3
py
Runtime Error
0
0
52
x=int,input() for v in range(x): print(case i : v)
s325358874
p02396
u169794024
1498528134
Python
Python3
py
Runtime Error
0
0
54
x=int,input() for v in range(x): print("case i :" v)
s148802244
p02396
u169794024
1498528190
Python
Python3
py
Runtime Error
0
0
78
x=int,input() for v in range(x): for i in range(100000): print(case i : v)
s606802245
p02396
u169794024
1498528250
Python
Python3
py
Runtime Error
0
0
78
x=int,input() for v in range(x): for i in range(100000): print(Case i : v)
s175995280
p02396
u169794024
1498611397
Python
Python3
py
Runtime Error
0
0
49
i,x = map(int,input().split()) print(case i : x)
s499199195
p02396
u169794024
1498611433
Python
Python3
py
Runtime Error
0
0
52
i,x = map(int,input().split()): print(case i : x)
s134528360
p02396
u169794024
1498611602
Python
Python3
py
Runtime Error
0
0
74
i,x = map(int,input().split()): if x == 0; break print(case i : x)
s877169162
p02396
u169794024
1498611707
Python
Python3
py
Runtime Error
0
0
80
x =int(input()) for i in range(10000) if x == 0; break print(case i : x)
s736257237
p02396
u169794024
1498611737
Python
Python3
py
Runtime Error
0
0
81
x =int(input()) for i in range(10000): if x == 0: break print(case i : x)
s950978853
p02396
u169794024
1498611779
Python
Python3
py
Runtime Error
0
0
83
x =int(input()) for i in range(1,10000): if x == 0: break print(case i : x)
s572188575
p02396
u169794024
1498612086
Python
Python3
py
Runtime Error
0
0
87
for x in range(): for i in range(10000): if x == 0: break print(Case i : x)
s746971804
p02396
u169794024
1498612129
Python
Python3
py
Runtime Error
0
0
85
x = int(input()) for i in range(10000): if x == 0: break print(Case i : x)
s261462652
p02396
u169794024
1498612189
Python
Python3
py
Runtime Error
0
0
87
x = int(input()) for i in range(1,10000): if x == 0: break print(Case i : x)
s188761894
p02396
u169794024
1498612525
Python
Python3
py
Runtime Error
0
0
78
i = 1 x=int(input()) if x==0: break print("case {0} : {1}" format(i,x)) i=+1
s396074772
p02396
u169794024
1498612566
Python
Python3
py
Runtime Error
0
0
78
i = 1 x=int(input()) if x==0: break print("case {0}: {1}" .format(i,x)) i=+1