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
s947993673
p02396
u169794024
1498612605
Python
Python3
py
Runtime Error
0
0
77
i = 1 x=int(input()) if x==0: break print("case {0}: {1}".format(i,x)) i=+1
s506140766
p02396
u169794024
1498612650
Python
Python3
py
Runtime Error
0
0
77
i = 1 x=int(input()) if x==0: break print("case {0}: {1}".format(i,x)) i+=1
s365800394
p02396
u169794024
1498612694
Python
Python3
py
Runtime Error
0
0
77
i = 1 x=int(input()) if x==0: break print("Case {0}: {1}".format(i,x)) i+=1
s241350327
p02396
u818923713
1498716652
Python
Python3
py
Runtime Error
0
0
75
x = input() i = 1 while (x != 0): print("case{},{}".format(i,x)) i += 1
s443156775
p02396
u818923713
1498718003
Python
Python3
py
Runtime Error
0
0
108
i = 1 while True: x = int(input()) if x == 0: break print("Case {}: {}".format(i, n)) i += 1
s448281994
p02396
u818923713
1498718106
Python
Python3
py
Runtime Error
0
0
108
i = 1 while True: x = int(input()) if x == 0: break print("Case {}: {}".format(i, n)) i += 1
s199512072
p02396
u818923713
1498718151
Python
Python3
py
Runtime Error
0
0
112
i = 1 while True: x = int(input()) if x == 0: break print("Case {}: {}".format(i, n)) i += 1
s365641203
p02396
u721221949
1498721676
Python
Python3
py
Runtime Error
0
0
69
x = int(input()) i = 1 while x != 0: print(Case i: x) i += 1
s180925676
p02396
u721221949
1498721867
Python
Python
py
Runtime Error
0
0
64
x = input() i = 1 while x != 0: print(Case i: x) i += 1
s091684957
p02396
u721221949
1498721897
Python
Python3
py
Runtime Error
0
0
64
x = input() i = 1 while x != 0: print(Case i: x) i += 1
s632661952
p02396
u721221949
1498722020
Python
Python3
py
Runtime Error
0
0
80
x = int(input()) i = 1 while x != 0: print(Case i: int(input(x)) i += 1
s281729940
p02396
u818923713
1498722141
Python
Python3
py
Runtime Error
0
0
152
while True: x,y = map(int, input().split()) if x == 0 and y == 0: break elif x <= y: print(x,y) else: print(y,x)
s964517519
p02396
u340500592
1498973962
Python
Python3
py
Runtime Error
0
0
141
dataset = map(int, input().split(\n)) for i in range(len(dataset)): if dataset[i] == 0: break else: print("Case %d: %d", i, dataset[i])
s410346740
p02396
u350064373
1499239880
Python
Python3
py
Runtime Error
0
0
89
count = 0 while True: x=input("") count+=1 print("Case ",str(count) + ":", x)
s948690629
p02396
u350064373
1499239970
Python
Python3
py
Runtime Error
0
0
88
count = 0 while True: x=input("") count+=1 print("Case",str(count) + ":", x)
s615836648
p02396
u350064373
1499240487
Python
Python3
py
Runtime Error
0
0
121
count = 0 x=None while (x == 0) == False: x=input("") int(count) count+=1 print("Case",str(count)+":", x)
s762718435
p02396
u027278270
1499667564
Python
Python3
py
Runtime Error
0
0
69
x = int(input()) for i in range(10001): i += 1 print(Case i: x)
s188129181
p02396
u248424983
1499832675
Python
Python3
py
Runtime Error
0
0
121
import numpy as np A = np.array(input()) for i, val in numpy.ndenumerate(A): print('Case '+repr(i[0])+': '+repr(val))
s977167650
p02396
u248424983
1499833025
Python
Python3
py
Runtime Error
0
0
164
import numpy as np A = np.array(input()) for i, val in numpy.ndenumerate(A): if val==0: break else: print('Case '+repr(i[0])+': '+repr(val))
s935833378
p02396
u248424983
1499833331
Python
Python3
py
Runtime Error
0
0
166
import numpy as np A = np.array(input()) for i, val in numpy.ndenumerate(A): if val==0: break else: print('Case '+repr(i[0]+1)+': '+repr(val))
s380832197
p02396
u248424983
1499836030
Python
Python3
py
Runtime Error
0
0
166
import sys [x.strip() for x in sys.stdin.readlines()] cnt=1 for i in x: if i==0: break else: print('Case '+repr(cnt)+': '+repr(i)) cnt+=1
s352482219
p02396
u248424983
1499836765
Python
Python3
py
Runtime Error
0
0
174
import sys [x.strip() for x in sys.stdin.readlines()] cnt=1 for i in x: if i==0: break else: print('Case '+repr(cnt)+': '+repr(int(i))) cnt+=1
s257564283
p02396
u043639882
1500011470
Python
Python3
py
Runtime Error
0
0
85
import sys for line in sys.stdin: if line == 0: break print("Case" " " line ":" )
s819346017
p02396
u043639882
1500015865
Python
Python3
py
Runtime Error
0
0
145
import sys count = 1 While True: x = sys.stdin.readlie().atrip() if x == "0": break print("Case %d: %s" %(count,x)) count = count + 1
s119985798
p02396
u043639882
1500015998
Python
Python3
py
Runtime Error
0
0
146
import sys count = 1 While True: x = sys.stdin.readline().strip() if x == "0": break print("Case %d: %s" %(count,x)) count = count + 1
s904986595
p02396
u447009770
1500278906
Python
Python3
py
Runtime Error
0
0
98
n = int(input()) for i in range(n): if n[i] == 0: break print('case ',i+1, ': ', n[i], sep='')
s594918373
p02396
u447009770
1500279062
Python
Python3
py
Runtime Error
0
0
114
n= [] n = n.append(int(input())) for i in range(n): if n[i] == 0: break print('case ',i+1, ': ', n[i], sep='')
s936360598
p02396
u498511622
1500299699
Python
Python3
py
Runtime Error
0
0
22
while True: input('')
s132038685
p02396
u350064373
1500300137
Python
Python3
py
Runtime Error
0
0
115
x = input("") count=1 while x != 0: print("Case",str(count)+":",x) count = int(count) + 1 x = input("")
s259107276
p02396
u350064373
1500300332
Python
Python3
py
Runtime Error
0
0
134
x = input("") count = 1 while True: print("Case",str(count)+":",input("")) count = int(count) + 1 if x == 0: break
s903459522
p02396
u350064373
1500300417
Python
Python3
py
Runtime Error
0
0
120
count = 1 while True: print("Case",str(count)+":",input("")) count = int(count) + 1 if x == 0: break
s301917411
p02396
u350064373
1500300510
Python
Python3
py
Runtime Error
0
0
130
count = 1 while True: x = input("") print("Case",str(count)+":",x) count = int(count) + 1 if x == 0: break
s557020030
p02396
u350064373
1500301357
Python
Python3
py
Runtime Error
0
0
187
count = 1 t=[] while True: x = input("") if x == "0": break else: t.append("Case",str(count)+":",x) count = int(count) + 1 for i in t: print(t[i])
s002320901
p02396
u027278270
1500427925
Python
Python3
py
Runtime Error
0
0
148
x = int(input()) for i in range(len(x)): i += 1 print("Case "+ str(i)+ ": " + str(x))
s798880676
p02396
u027278270
1500428019
Python
Python3
py
Runtime Error
0
0
143
x = int(input()) for i in range(len(x)): i += 1 print("Case "+ str(i)+ ": " + x)
s851264887
p02396
u027278270
1500430183
Python
Python3
py
Runtime Error
0
0
97
x = int(input()) for i in range(len(x)): i += 1 print("Case "+ str(i) + ": " + str(x[i]))
s556049963
p02396
u027278270
1500431140
Python
Python3
py
Runtime Error
0
0
103
list(x) = int(input()) for i in range(len(x)): i += 1 print("Case "+ str(i) + ": " + str(x[i]))
s725126326
p02396
u027278270
1500431203
Python
Python3
py
Runtime Error
0
0
97
x = int(input()) for i in range(len(x)): i += 1 print("Case "+ str(i) + ": " + str(x[i]))
s439974767
p02396
u027278270
1500431280
Python
Python3
py
Runtime Error
0
0
99
x = int(input()) for i in range(len(x)): i += 1 print("Case "+ str(i) + ": " + str(x[i-1]))
s403088426
p02396
u295538678
1500433749
Python
Python3
py
Runtime Error
0
0
135
x = [0 for i in range(1, 10000)] i = 0 while(1): x[i] = int(input()) if(x[i] == 0): exit() print('Case', i+1, ': ', x[i]) i += 1
s547421101
p02396
u295538678
1500433778
Python
Python
py
Runtime Error
0
0
135
x = [0 for i in range(1, 10000)] i = 0 while(1): x[i] = int(input()) if(x[i] == 0): exit() print('Case', i+1, ': ', x[i]) i += 1
s801444249
p02396
u295538678
1500433985
Python
Python3
py
Runtime Error
0
0
138
x = [0 for i in range(1, 10000)] i = 0 while(1): x[i] = int(input(), 0) if(x[i] == 0): exit() print('Case', i+1, ': ', x[i]) i += 1
s096032884
p02396
u295538678
1500434167
Python
Python3
py
Runtime Error
0
0
196
x = [0 for i in range(10000)] i = 0 f = 0 while(f == 0): x[i] = int(input()) if(x[i] == 0): f = 1 i += 1 i = 0 while(f == 1): print('Case', i+1, ': ', x[i]) i += 1 if(x[i] == 0): f = 2
s828369760
p02396
u295538678
1500434516
Python
Python3
py
Runtime Error
0
0
194
x = [0 for i in range(10000)] i = 0 f = 0 while(f == 0): x[i] = int(input()) if(x[i] == 0): f = 1 i += 1 i = 0 while(f == 1): print('Case', i+1, ':', x[i]) i += 1 if(x[i] == 0): f = 2
s495700271
p02396
u791170614
1501151192
Python
Python3
py
Runtime Error
0
0
146
a = [] while True: n = input() if n == 0: break a.append(n) for i in range(a): print("case " + str(i) + ": " + str(a[i]))
s092723147
p02396
u721103753
1501206677
Python
Python3
py
Runtime Error
0
0
101
num = 1 for i in int(input()): if i == 0: break print(f"Case {num}: {i}") num +=1
s388931388
p02396
u721103753
1501206817
Python
Python3
py
Runtime Error
0
0
112
num = 1 for i in int(input()): if i == 0: break print("Case {0}: {1}".format(num,i)) num +=1
s578294928
p02396
u467070262
1501600267
Python
Python3
py
Runtime Error
0
0
124
for i in range(1,100000000000) x = int(input()) if x == 0: break print("Case " + str(i) + ": " + str(x))
s167731145
p02396
u821624310
1502064956
Python
Python3
py
Runtime Error
0
0
118
x = 10000 i = 1 while x: x = input() if x == 0: break print("Case {}: {}".format(i, x)) i += 1
s025275368
p02396
u433181015
1502174989
Python
Python3
py
Runtime Error
0
0
123
nums = [int(i) for i in input()] for j in range(1, 10000): print("Case j: {}".format(nums)) if nums == 0: break
s559532049
p02396
u744121389
1502403420
Python
Python3
py
Runtime Error
0
0
71
for i in range(10000) x= input() print("Case i: x) if x = 0: break
s008074050
p02396
u744121389
1502403637
Python
Python3
py
Runtime Error
0
0
72
x= input() for i in range(10000) print("Case i: x) if x = 0: break
s297357625
p02396
u744121389
1502407245
Python
Python3
py
Runtime Error
0
0
92
x= input() for i in range(10000) print("Case i: x) if x = 0: ?????????????????????break
s572686863
p02396
u744121389
1502412952
Python
Python3
py
Runtime Error
0
0
73
x= input() for i in range(10000) print("Case i: x) if x == 0: break
s523045786
p02396
u744121389
1502413231
Python
Python3
py
Runtime Error
0
0
104
import sys i = 1 for i in sys.stdin.readlines().strip() if i == 0: break print("Case i: x") i += 1
s795717742
p02396
u142321256
1502461039
Python
Python3
py
Runtime Error
0
0
116
a = [input() for i in range(N)] for i in range(len(a)): if(a[i]==0): break else: print(a[i])
s389033578
p02396
u142321256
1502461077
Python
Python3
py
Runtime Error
0
0
149
a = [] while True: n = input() if n == -1: break for i in range(len(a)): if(a[i]==0): break else: print(a[i])
s813081020
p02396
u142321256
1502461108
Python
Python3
py
Runtime Error
0
0
165
a = [] while True: n = input() if n == -1: break a.append(n) for i in range(len(a)): if(a[i]==0): break else: print(a[i])
s874554579
p02396
u142321256
1502461135
Python
Python3
py
Runtime Error
0
0
166
a = [] while True: n = input() if n == -1: break a.append(n) for i in range(len(a)): if(a[i]==0): break else: print(a[i])
s825549458
p02396
u142321256
1502461224
Python
Python3
py
Runtime Error
0
0
190
a = [] while True: n = input() if n == -1: break a.append(n) for i in range(len(a)): if(a[i]==0): break else: print('Case '+str(i)+': 'str(a[i]))
s395953848
p02396
u142321256
1502461280
Python
Python3
py
Runtime Error
0
0
191
a = [] while True: n = input() if n == -1: break a.append(n) for i in range(len(a)): if(a[i]==0): break else: print('Case '+str(i)+': '+str(a[i]))
s539155090
p02396
u142321256
1502461393
Python
Python3
py
Runtime Error
0
0
193
a = [] while True: n = input() if (n == -1): break a.append(n) for i in range(len(a)): if(a[i]==0): break else: print('Case '+str(i)+': '+str(a[i]))
s832167611
p02396
u142321256
1502461453
Python
Python3
py
Runtime Error
0
0
151
a = [] while True: n = input() if (n == 0): break a.append(n) for i in range(len(a)): print('Case '+str(i)+': '+str(a[i]))
s646861458
p02396
u142321256
1502461465
Python
Python3
py
Runtime Error
0
0
151
a = [] while True: n = input() if (n == 0): break a.append(n) for i in range(len(a)): print('Case '+str(i)+': '+str(a[i]))
s116664253
p02396
u142321256
1502461506
Python
Python3
py
Runtime Error
0
0
81
a = [] while True: n = input() if (n == 0): break a.append(n)
s134189726
p02396
u142321256
1502461522
Python
Python3
py
Runtime Error
0
0
152
a = [] while(True): n = input() if (n == 0): break a.append(n) for i in range(len(a)): print('Case '+str(i)+': '+str(a[i]))
s682984285
p02396
u142321256
1502461530
Python
Python3
py
Runtime Error
0
0
149
a = [] while(1): n = input() if (n == 0): break a.append(n) for i in range(len(a)): print('Case '+str(i)+': '+str(a[i]))
s982368298
p02396
u142321256
1502461551
Python
Python3
py
Runtime Error
0
0
79
a = [] while(1): n = input() if (n == 0): break a.append(n)
s956031529
p02396
u142321256
1502461556
Python
Python3
py
Runtime Error
0
0
79
a = [] while(1): n = input() if (n == 0): break a.append(n)
s288856135
p02396
u853619096
1502511410
Python
Python3
py
Runtime Error
0
0
102
while True: a=int(input()) if a ==0: break i=1 print(Case i: a) i+=1
s505683862
p02396
u853619096
1502511479
Python
Python3
py
Runtime Error
0
0
119
while True: a = int(input()) if a == 0: break i = 1 print("Case {}: {}.format(i,a)) i += 1
s812773361
p02396
u744121389
1502885602
Python
Python3
py
Runtime Error
0
0
128
import sys a = 1 for b in sys.stdin: if b.strip() == 0: break print"Case %d: %s" % (a,b.strip) a += 1
s605134132
p02396
u744121389
1502886263
Python
Python3
py
Runtime Error
0
0
129
import sys cnt =1 while 1: x = sys.stdin.strip() if x == "0": break; print("Case %d: %s"%(cnt,x)) cnt+=1
s922418506
p02396
u744121389
1502886970
Python
Python3
py
Runtime Error
0
0
141
import sys cnt =1 while 1: x = sys.stdin.readline().strip() if x == "0": break: print("Case %d: %s"%(cnt,x)) cnt+=1
s954921356
p02396
u283452598
1503041763
Python
Python3
py
Runtime Error
0
0
79
count=0 while x != 0: x=int(input()) print("Case {0}: x".format(count))
s150149753
p02396
u283452598
1503041777
Python
Python3
py
Runtime Error
0
0
94
count=0 while x != 0: x=int(input()) print("Case {0}: x".format(count)) count += 1
s574076570
p02396
u525269094
1503288735
Python
Python3
py
Runtime Error
0
0
99
import sys i = 1 while: c = sys.argv[i] if c == 0: break else: print(c
s582144033
p02396
u525269094
1503288823
Python
Python3
py
Runtime Error
0
0
101
import sys i = 1 while 1: c = sys.argv[i] if c == 0: break else: print(c
s217940332
p02396
u525269094
1503289930
Python
Python3
py
Runtime Error
0
0
118
import sys ns = sys.argv for i in range(1,10000): if ns[i] == "0": break else: print (ns[i])
s484805444
p02396
u525269094
1503290009
Python
Python3
py
Runtime Error
0
0
133
import sys ns = sys.argv for i in range(1,10000): if ns[i] == "0": break else: print ("case ",i,": ",ns[i])
s626468085
p02396
u525269094
1503290709
Python
Python3
py
Runtime Error
0
0
150
import sys ns = sys.stdin.readlines() for i in range(1,10000): if ns[i] == "0": break else: print ("Case ",i,": ",ns[i]"\n")
s345625204
p02396
u525269094
1503290714
Python
Python3
py
Runtime Error
0
0
150
import sys ns = sys.stdin.readlines() for i in range(1,10000): if ns[i] == "0": break else: print ("Case ",i,": ",ns[i]"\n")
s668821241
p02396
u525269094
1503291092
Python
Python3
py
Runtime Error
0
0
148
import sys ns = sys.stdin.readlines() for i in range(1,10000): if ns[i] == "0": break else: print ("Case ",i,": ",ns[i]\n)
s540880185
p02396
u525269094
1503291166
Python
Python3
py
Runtime Error
0
0
151
import sys ns = sys.stdin.readlines() for i in range(1,20000): if ns[i] == "0": break else: print ("Case ",i,": ",ns[i],"\n")
s127904773
p02396
u544943822
1503556210
Python
Python
py
Runtime Error
0
0
60
while True: x=raw_input() if x=(0) break print("0")
s238268821
p02396
u544943822
1503557110
Python
Python
py
Runtime Error
0
0
74
a = 1 while True: read each x=raw_input() if x=0: print(0) break
s733203055
p02396
u628840297
1503557221
Python
Python
py
Runtime Error
0
0
136
a = 1 while True: x = raw_input('Case a: ','b') a += 1 b = input() if we have 0 break print(x)
s564298095
p02396
u617778316
1503557291
Python
Python
py
Runtime Error
0
0
111
a=1 while True: x=raw_input() if x!=0: print('Case '+str(a)+':'+x) a+=1 elif x==0: break
s041072279
p02396
u544943822
1503559007
Python
Python
py
Runtime Error
0
0
132
count = 0 while True: x=raw_input() count + =1 if x == '0': break print('Case' + count + ':' + x)
s952395793
p02396
u628840297
1503559240
Python
Python
py
Runtime Error
0
0
139
count = 0 while True: x = raw_input() count += 1 if x == '0': break print('Case' + str(count) + ': ' + x)
s471372018
p02396
u954858867
1503566292
Python
Python3
py
Runtime Error
0
0
144
ret = [] while True: n = input() if n == 0: break ret += [n] for i, x in enumerate(ret): print 'Case %d: %d' % (i+1, x)
s974180756
p02396
u954858867
1503566506
Python
Python
py
Runtime Error
0
0
105
i = 0 while True: i, n = input(), i+1 if n == 0: break print 'Case %d: %d' % (i+1, x)
s913468574
p02396
u954858867
1503566528
Python
Python
py
Runtime Error
0
0
105
i = 0 while True: i, n = input(), i+1 if n == 0: break print 'Case %d: %d' % (i+1, n)
s408809855
p02396
u096862087
1503647225
Python
Python3
py
Runtime Error
0
0
112
for i in range(10000): j = (int)input() if j == 0: break print("Case {0}: {1}".format(i, j))
s437466471
p02396
u132415474
1504521400
Python
Python3
py
Runtime Error
0
0
97
for i, e in enumerate(eval(input().replace('\n', ','))): print("Case {}: {}".format(i+1, e))
s378700505
p02396
u132415474
1504521554
Python
Python3
py
Runtime Error
0
0
72
i = 1 while True: print("Case {}: {}".format(i, input())) i += 1
s841987047
p02396
u563181068
1505058277
Python
Python3
py
Runtime Error
0
0
117
i=1;count=1 while 1: i=input() if i==0: break print("case {0}: {1}".format(count,i)) count+=1
s073110155
p02396
u563181068
1505058488
Python
Python3
py
Runtime Error
0
0
117
i=1;count=1 while 1: i=input() if i==0:break print("case {0}: {1}".format(count,i)) count+=1
s885523710
p02396
u563181068
1505058566
Python
Python3
py
Runtime Error
0
0
109
i=1;count=1 while 1: i=input() if i==0:break print("Case {0}: {1}".format(count,i)) count+=1
s089346221
p02396
u362494298
1505174255
Python
Python3
py
Runtime Error
0
0
144
count = 1 for: x = input() if x == 0: break else: {i}.format(i=count) print("Case{i}:" x) count = count + 1