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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s986546446 | p02396 | u216235239 | 1463741597 | Python | Python3 | py | Runtime Error | 0 | 0 | 165 | import sys
num = 0
while check == True:
x = sys.stdin.readline().strip()
if x == "0":
check = False
num = num + 1
print("case " + str(num) + ": " + x")
|
s196804319 | p02396 | u216235239 | 1463743048 | Python | Python3 | py | Runtime Error | 0 | 0 | 170 | import sys
check = True
i = 0
#for j in range(100):
# x = sys.stdin.readline().strip()
#
# if x == "0":
# check = False
# break
print("Case " + str(i) + ": " + x) |
s030505827 | p02396 | u104931506 | 1464297631 | Python | Python3 | py | Runtime Error | 0 | 0 | 130 | import sys
for i, x in enumerate(map(int, sys.stdin())):
if x == 0 or not x:
break;
print('Case {0}: {1}'.format(i + 1, x) |
s346859423 | p02396 | u104931506 | 1464297763 | Python | Python3 | py | Runtime Error | 0 | 0 | 131 | import sys
for i, x in enumerate(map(int, sys.stdin())):
if x == 0 or not x:
break;
print('Case {0}: {1}'.format(i + 1, x)) |
s528142741 | p02396 | u177370127 | 1465277779 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | import sys
i = 1
while True:
x = sys.stdin.readline().strip()
print("Case &d: %s" % (i, x))
i += 1 |
s505638554 | p02396 | u177370127 | 1465277845 | Python | Python3 | py | Runtime Error | 0 | 0 | 140 | import sys
i = 1
while True:
x = sys.stdin.readline().strip()
if x == 0:
break;
print("Case &d: %s" % (i, x))
i += 1 |
s303213465 | p02396 | u119456964 | 1465793624 | Python | Python | py | Runtime Error | 0 | 0 | 108 | count = 1
while(1):
x = int(raw_input())
if x == 0:
break
print 'Case {0}: {1}'.format(count++, x) |
s561094806 | p02396 | u119456964 | 1465793637 | Python | Python | py | Runtime Error | 0 | 0 | 116 | count = 1
while(1):
x = int(raw_input())
if x == 0:
break
print 'Case {0}: {1}'.format(count, x)
count++ |
s139758849 | p02396 | u119456964 | 1465793711 | Python | Python | py | Runtime Error | 0 | 0 | 107 | count = 1
while 1:
x = int(raw_input())
if x == 0:
break
print 'Case {0}: {1}'.format(count++, x) |
s585063155 | p02396 | u119456964 | 1465793832 | Python | Python | py | Runtime Error | 0 | 0 | 111 | count = 1
while 1:
x = int(raw_input())
if x == 0:
break
print 'Case {0}: {1}'.format(count += 1+, x) |
s296102474 | p02396 | u119456964 | 1465793842 | Python | Python | py | Runtime Error | 0 | 0 | 110 | count = 1
while 1:
x = int(raw_input())
if x == 0:
break
print 'Case {0}: {1}'.format(count += 1, x) |
s342339075 | p02396 | u587193722 | 1469593072 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | a = [int(i) for i in input().split() if i > 0: else: break]
for i in range(0,len(a)):
print('Case ', i+1, ': ', a[i], sep='') |
s982835547 | p02396 | u587193722 | 1469593257 | Python | Python3 | py | Runtime Error | 0 | 0 | 127 | a = [int(i) for i in input().split() if i > 0 else break]
for i in range(0,len(a)):
print('Case ', i+1, ': ', a[i], sep='') |
s285320062 | p02396 | u587193722 | 1469594669 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | a = [(int(i) for i in input().split()) if i > 0 else break]
for i in range(0,len(a)):
print('Case ', i+1, ': ', a[i], sep='') |
s877534160 | p02396 | u204883389 | 1469596194 | Python | Python3 | py | Runtime Error | 0 | 0 | 198 | def main():
i = 1
while True:
x = int(raw_input().strip())
if x == 0:
break
print "Case %d: %d" % (i, x)
i += 1
if __name__ == '__main__':
main() |
s188657885 | p02396 | u204883389 | 1469596984 | Python | Python3 | py | Runtime Error | 0 | 0 | 207 | def main():
i = 1
while True:
x = [int(i) for i in input().split()]
if x == 0:
break
print "Case %d: %d" % (i, x)
i += 1
if __name__ == '__main__':
main() |
s148844847 | p02396 | u085472528 | 1469597998 | Python | Python3 | py | Runtime Error | 0 | 0 | 155 | count = 1
while True:
x = int(input())
if x ! = 0:
print("case {0}: {1}".format(count, x))
count += 1
else:
break |
s457091958 | p02396 | u600195957 | 1469598078 | Python | Python3 | py | Runtime Error | 0 | 0 | 166 | count = 1
while True:
x = int(input())
if x != 0:
print("Case {0}: {1}".format(count, x)
count += 1
else:
break |
s379267854 | p02396 | u085472528 | 1469598088 | Python | Python3 | py | Runtime Error | 0 | 0 | 155 | count = 1
while True:
x = int(input())
if x ! = 0:
print("Case {0}: {1}".format(count, x))
count += 1
else:
break |
s808494729 | p02396 | u747009765 | 1469598104 | Python | Python3 | py | Runtime Error | 0 | 0 | 190 | 1 count = 1
2
3 while True:
4 x = int(input())
5 if x != 0:
6 print("Case {0}: {1}".format(count, x))
7 count += 1
8
9 else:
10 break |
s671392399 | p02396 | u498041957 | 1469598132 | Python | Python3 | py | Runtime Error | 0 | 0 | 156 | count = 1
While True:
X = it(input())
if x != 0:
print("case {0}: {1}:.format(count, x)")
count +=1
else:
break |
s199563086 | p02396 | u600195957 | 1469598142 | Python | Python3 | py | Runtime Error | 0 | 0 | 167 | count = 1
while True:
x = int(input())
if x != 0:
print("Case {0} : {1}".format(count, x)
count += 1
else:
break |
s250798883 | p02396 | u498041957 | 1469598153 | Python | Python3 | py | Runtime Error | 0 | 0 | 156 | count = 1
While True:
X = it(input())
if x != 0:
print("case {0}: {1}:.format(count, x)")
count +=1
else:
break |
s330665451 | p02396 | u498041957 | 1469598187 | Python | Python3 | py | Runtime Error | 0 | 0 | 157 | count = 1
While True:
X = int(input())
if x != 0:
print("case {0}: {1}:.format(count, x)")
count +=1
else:
break |
s338543872 | p02396 | u600195957 | 1469598239 | Python | Python3 | py | Runtime Error | 0 | 0 | 167 | count = 1
while True:
x = int(input())
if x != 0:
print("Case {0} : {1}".format(count, x)
count += 1
else:
break |
s876638738 | p02396 | u435917115 | 1469598294 | Python | Python3 | py | Runtime Error | 0 | 0 | 153 | count = 1
while True:
x = int(input())if x != 0:
print("Case {0}: {1}".format(count, x))
count += 1
else:
break |
s279922459 | p02396 | u498041957 | 1469598306 | Python | Python3 | py | Runtime Error | 0 | 0 | 141 | import abc
c = 0
while True:
i = int(abc.stdin.readline())
if (i == 0):
break
c+=1
print("Case " + str(c) + ":", i) |
s912212117 | p02396 | u510829608 | 1469704949 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | cnt = 1
while True:
a = input()
if a == '0':
break
cnt += 1
print('Case {0}:{1}'.format(cnt, a)) |
s024507558 | p02396 | u216425054 | 1470673413 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | a=1
while 1:
i = int(raw_input())
if i == 0:
break
else:
print 'Case %d: %d'%(a, i)
a += 1 |
s923584372 | p02396 | u998435601 | 1470855248 | Python | Python | py | Runtime Error | 0 | 0 | 72 | i = 1
while (a = input()) != 0:
print "Case %d: %d" % (i, a)
i = i + 1 |
s655531953 | p02396 | u998435601 | 1470855805 | Python | Python | py | Runtime Error | 0 | 0 | 136 | lis = []
a = raw_input()
while a != '0':
lis.append(a)
a = int(raw_input())
for i,v in enumerate(lis):
print "Case %d: %d" % (i+1,v) |
s691830269 | p02396 | u998435601 | 1470855929 | Python | Python | py | Runtime Error | 0 | 0 | 84 | i = 1
while true:
a = raw_input()
if a = '0':
break
print "Case %d: %s" % (i,a) |
s433612171 | p02396 | u792783386 | 1472476395 | Python | Python | py | Runtime Error | 0 | 0 | 296 | # coding: UTF-8
# ???????????´??° x ???????????????????????????????????????????????????????????°?????????????????????????????????
data_set = []
while True:
n = input()
if n == 0:
break
data_set.append(n)
case = 1
for n in data_set:
print "Case %d: %d" %(case, n)
case += 1 |
s493047337 | p02396 | u892219101 | 1473441209 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | import sys
for i in range(10000):
j=int(input)
if j==0:
sys.exit()
print("Case",str(i)+":",j) |
s086272121 | p02396 | u892219101 | 1473441299 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | import sys
while 1:
j=int(input)
if j==0:
sys.exit()
print("Case",str(i)+":",j) |
s415418833 | p02396 | u892219101 | 1473441359 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | while 1:
i=1
j=int(input)
if j==0:
break
print("Case",str(i)+":",j)
i+=1 |
s211553393 | p02396 | u494314211 | 1475347014 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | a=0
while(True):
b=input()
if b="0":
break
print("Case",a,end="")
a+=1 |
s013345665 | p02396 | u494314211 | 1475348133 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | a = []
for line in sys.stdin:
a.append(int(line))
for i in range(len(a)):
print("Case ",i+1,": ",a[i],end="") |
s580764967 | p02396 | u494314211 | 1475348167 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | a = []
for line in sys.stdin:
a.append(int(line))
for i in range(len(a)):
print("Case ",i+1,": ",a[i],end="") |
s938662962 | p02396 | u494314211 | 1475348227 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | a = []
for line in sys.stdin:
a.append(int(line))
for i in range(len(a)):
print("Case ",i+1,": ",a[i],sep="") |
s985005907 | p02396 | u494314211 | 1475348323 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | a = []
for line in sys.stdin:
if line="0"
a.append(int(line))
for i in range(len(a)):
print("Case ",i+1,": ",a[i],sep="") |
s996151348 | p02396 | u494314211 | 1475348338 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | a = []
for line in sys.stdin:
if line="0"
a.append(int(line))
for i in range(len(a)):
print("Case ",i+1,": ",a[i],sep="") |
s165274309 | p02396 | u494314211 | 1475348440 | Python | Python3 | py | Runtime Error | 0 | 0 | 160 | a = []
for line in sys.stdin:
if line="0"
a.append(int(line))
if len(a>10000):
break
for i in range(len(a)):
print("Case ",i+1,": ",a[i],sep="") |
s872109489 | p02396 | u073709667 | 1476029080 | Python | Python3 | py | Runtime Error | 0 | 0 | 130 | import sys
i=0
while True:
x=sys.stdin.readline().strip()
if x==0:
break
print("Case %d: %d"%(i+1,x))
i+=1 |
s646971372 | p02396 | u073709667 | 1476029087 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | import sys
i=0
while True:
x=sys.stdin.readline().strip()
if x=="0":
break
print("Case %d: %d"%(i+1,x))
i+=1 |
s208378956 | p02396 | u073709667 | 1476029094 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | import sys
i=0
while True:
x=sys.stdin.readline().strip()
if x=="0":
break;
print("Case %d: %d"%(i+1,x))
i+=1 |
s663577146 | p02396 | u073709667 | 1476029105 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | import sys
i=0
while True:
x=sys.stdin.readline().strip()
if x=="0":
break;
print("Case %d: %d"%(i+1,x))
i+=1 |
s343523785 | p02396 | u801346721 | 1476696088 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | counter = 1
while 1:
i = int(input())
if i == 0:
break
print("Case", str(count)':', i)
count++ |
s712881354 | p02396 | u801346721 | 1476696986 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | counter = 0
while 1:
i = int(input())
if i == 0:
break
counter++
print("Case {0}: {1}".format(counter, i) |
s624402414 | p02396 | u801346721 | 1476697117 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | counter = 0
while 1:
i = int(input())
if i == 0:
break
counter += 1
print("Case {0}: {1}".format(counter, i) |
s726715093 | p02396 | u996758922 | 1476972486 | Python | Python3 | py | Runtime Error | 0 | 0 | 226 | n=0
cases=[0]
while n<=9999:
case=input()
if int(case) != 0:
cases.append(case)
n+=1
else:
break
length=len(cases)
for n in range(length):
print("Case "+str(n+1)+": "+str(cases[n+1])) |
s654407915 | p02396 | u996758922 | 1476973149 | Python | Python3 | py | Runtime Error | 0 | 0 | 174 | cases=[]
while True:
n = input()
if n==0:
break
cases.append(n)
length=len(cases)
for n in range(length):
print("Case "+str(n+1)+": "+str(cases[n])) |
s200269050 | p02396 | u175111751 | 1477427110 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | while True:
i = int(input())
break if i == 0 else print('Case i: {0}'.format(i))
|
s732898390 | p02396 | u175111751 | 1477427333 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | i = 0
while True:
i++
x = int(input())
if x == 0:
break
else:
print('Case {0}: {1}'.format(i, x) |
s113561328 | p02396 | u175111751 | 1477427367 | Python | Python3 | py | Runtime Error | 0 | 0 | 131 | i = 0
while True:
i += 1
x = int(input())
if x == 0:
break
else:
print('Case {0}: {1}'.format(i, x) |
s923070236 | p02396 | u175111751 | 1477427523 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | i = 0
while True:
i++
x = int(input())
if x == 0:
break
else:
print('Case {0}: {1}'.format(i, x)) |
s928242998 | p02396 | u831244171 | 1477490340 | Python | Python | py | Runtime Error | 0 | 0 | 143 | a = []
while True:
if n == 0:
break
else:
a.append(input())
for i in range(0,len(a)):
print "Case"+ i + ":" + a[i] |
s873066176 | p02396 | u831244171 | 1477490382 | Python | Python | py | Runtime Error | 0 | 0 | 153 | a = []
while True:
n = input()
if n == 0:
break
else:
a.append(n)
for i in range(0,len(a)):
print "Case"+ i + ":" + a[i] |
s507323648 | p02396 | u086566114 | 1479301178 | Python | Python | py | Runtime Error | 0 | 0 | 121 | import sys
for index, line in sys.stdin():
value = int(line.strip())
print("Case {0}: {1}".format(index, value)) |
s480158268 | p02396 | u086566114 | 1479301191 | Python | Python | py | Runtime Error | 0 | 0 | 119 | import sys
for index, line in sys.stdin:
value = int(line.strip())
print("Case {0}: {1}".format(index, value)) |
s259500093 | p02396 | u326248180 | 1479366881 | Python | Python3 | py | Runtime Error | 0 | 0 | 119 | num = 0
while true:
x = input()
num += 1
if x == '0':
break
print("Case {}: {}".format(num, x)) |
s774754795 | p02396 | u326248180 | 1479366926 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | num = 0
while true:
x = input()
num += 1
if x == '0':
break
print("Case %d: %s".% num, x) |
s816459104 | p02396 | u326248180 | 1479366940 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | num = 0
while(true):
x = input()
num += 1
if x == '0':
break
print("Case %d: %s".% num, x) |
s240814995 | p02396 | u326248180 | 1479366961 | Python | Python3 | py | Runtime Error | 0 | 0 | 127 | num = 0
while(true):
x = sys.stdin.readline()
num += 1
if x == '0':
break
print("Case %d: %s".% num, x) |
s506835890 | p02396 | u982344959 | 1479962250 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | i=0
x=int(input())
while x !=0:
i += 1
print("Case",i,":",x, sep="")
x=int(input())
|
s063467216 | p02396 | u133061229 | 1479962252 | Python | Python | py | Runtime Error | 0 | 0 | 98 | i = 0
x = int(input())
while x != 0:
i += 1
print("Case", i, ":", x, sep="")
x = int(input())
|
s338564980 | p02396 | u982344959 | 1479962364 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | i=0
x=int(input())
while x !=0:
i += 1
print("Case",i,":",x, sep="")
x=int(input())
|
s521269400 | p02396 | u982344959 | 1479962454 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | i=0
x=int(input())
while x !=0:
i += 1
print("Case ",i,": ",x, sep="")
x=int(input())
|
s972160046 | p02396 | u982344959 | 1479962547 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | i =0
x = int(input())
while x !=0:
i += 1
print("Case ",i,": ",x, sep="")
x = int(input())
|
s352406187 | p02396 | u302561071 | 1480414322 | Python | Python | py | Runtime Error | 0 | 0 | 75 | a = input()
b = 1
while(a = NULL):
print("Case " + str(i) + ": " + str(a)) |
s041189232 | p02396 | u302561071 | 1480414671 | Python | Python | py | Runtime Error | 0 | 0 | 98 | a = input()
b = 1
while(a != -1):
print("Case " + str(b) + ": " + str(a))
b = b + 1
a = input() |
s784029336 | p02396 | u302561071 | 1480416252 | Python | Python3 | py | Runtime Error | 0 | 0 | 170 | data = input().split()
a = int(data[0])
b = int(data[1])
c = int(data[2])
divisor = list()
for i in range(a,b+1):
if c % i == 0:
divisor.append(i)
print(len(divisor)) |
s163497845 | p02396 | u302561071 | 1480416302 | Python | Python | py | Runtime Error | 0 | 0 | 170 | data = input().split()
a = int(data[0])
b = int(data[1])
c = int(data[2])
divisor = list()
for i in range(a,b+1):
if c % i == 0:
divisor.append(i)
print(len(divisor)) |
s235873270 | p02396 | u693424532 | 1481721200 | Python | Python3 | py | Runtime Error | 0 | 0 | 144 | import sys
a = 0
while True:
i = int(sys.stdin.readline())
if (b == 0):
break
b += 1
print("Case " + str(a) + ":", a) |
s284103563 | p02396 | u234837959 | 1481937516 | Python | Python3 | py | Runtime Error | 0 | 0 | 280 | import sys
list_line = sys.stdin.readlines()
list_line = list(map(sprit, list_line)) #??°???(string???)??????????????????????????????
counter = 1
for i in list_line:
if i != '0':
print("Case %d:%s" % (counter, i))
counter += 1
else:
counter = 1 |
s298457250 | p02396 | u019678978 | 1482920415 | Python | Python3 | py | Runtime Error | 0 | 0 | 164 | import sys
c = 1
for i in sys.stdin.readline() :
if (! i == 0) :
print("Case " + str(c) + ":" + " " + str(i))
c = c + 1
else :
break |
s687925673 | p02396 | u019678978 | 1482920683 | Python | Python3 | py | Runtime Error | 0 | 0 | 167 | import sys
c = 1
for i in sys.stdin.readline() :
if (int(i) == 0) :
break
else :
print("Case " + str(c) + ":" + " " + str(i))
c = c + 1 |
s371240443 | p02396 | u019678978 | 1482921877 | Python | Python3 | py | Runtime Error | 0 | 0 | 171 | import sys
c = 1
for i in sys.stdin.readlines().strip() :
if i == "0" :
break
else :
print("Case " + str(c) + ":" + " " + str(i))
c = c + 1 |
s398427605 | p02396 | u162598098 | 1485091048 | Python | Python3 | py | Runtime Error | 0 | 0 | 142 | lis=[]
while True:
if input()=="0":
break
else:
lis.append(input())
for i in range(len(lis)):
print("Case %i: %i" % (i,lis[i])) |
s244107972 | p02396 | u144068724 | 1485748747 | Python | Python | py | Runtime Error | 0 | 0 | 75 | i=0
while 1:
x = raw_index()
i++
print "Case" i":"x
break() |
s458387882 | p02396 | u144068724 | 1485748868 | Python | Python | py | Runtime Error | 0 | 0 | 103 | i=0
while 1:
x = raw_index()
i++
if x == 0:
break()
print 'Case %s: %s' % (i,x) |
s655768543 | p02396 | u144068724 | 1485748889 | Python | Python | py | Runtime Error | 0 | 0 | 101 | i=0
while 1:
x = raw_index()
i++
if x == 0:
break
print 'Case %s: %s' % (i,x) |
s066673018 | p02396 | u144068724 | 1485748916 | Python | Python | py | Runtime Error | 0 | 0 | 107 | i=0
while 1:
x = raw_index()
i = i + 1
if x == 0:
break
print 'Case %s: %s' % (i,x) |
s104163345 | p02396 | u307520683 | 1486040532 | Python | Python | py | Runtime Error | 0 | 0 | 130 | a=1
while 1:
l = map(int,raw_input().split())
if l == [0,0]:
break
else :
print ' '.join(map(str,sorted(l)))
a += 1 |
s925020616 | p02396 | u307520683 | 1486040561 | Python | Python | py | Runtime Error | 0 | 0 | 124 | a=1
while 1:
l = map(int,raw_input().split())
if l == [0,0]:
break
else :
print ' '.join(map(str,sorted(l)))
a += 1 |
s455629182 | p02396 | u548155360 | 1487148749 | Python | Python3 | py | Runtime Error | 0 | 0 | 141 | a = []
i = 0 //????????????
while True:
n = input()
if n == 0:
break
i += 1//?????????????????????
print("Case {0} : {1}".format(i,n)) |
s463404498 | p02396 | u548155360 | 1487148965 | Python | Python3 | py | Runtime Error | 0 | 0 | 143 | a = []
i = 0 //????????????
while True:
n = input()
if n == 0:
break
i += 1//?????????????????????
print("Case {0} : {1}".format([i,n])) |
s679980257 | p02396 | u548155360 | 1487149213 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | i = 0 //????????????
while True:
n = input()
if n == 0:
break
i += 1//?????????????????????
print("Case {0} : {1}".format(i,n)) |
s558229444 | p02396 | u548155360 | 1487149345 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | i = 0 //????????????
while True:
n = input()
if n == 0:
break
i += 1//?????????????????????
print('Case {} : {}'.format(i,n)) |
s565212692 | p02396 | u548155360 | 1487149590 | Python | Python3 | py | Runtime Error | 0 | 0 | 143 | i = 0 //????????????
while True:
n = map(int,input())
if n == 0:
break
i += 1//?????????????????????
print('Case {} : {}'.format(i,n)) |
s613068896 | p02396 | u548155360 | 1487149695 | Python | Python3 | py | Runtime Error | 0 | 0 | 141 | i = 0 #????????????
while True:
n = map(int,input())
if n == 0:
break
i += 1#?????????????????????
print('Case {} : {}'.format(i,n)) |
s995254542 | p02396 | u339191823 | 1487588738 | Python | Python3 | py | Runtime Error | 0 | 0 | 118 | i=0
while True:
i+=1
x=input()
if x==0:
break
else:
print ("Case "+str(i)+": "+str(x)) |
s114440416 | p02396 | u553058997 | 1487755319 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | while:
a = input()
if a == '0':
break
print('Case 1:', a) |
s934805363 | p02396 | u024715419 | 1488163149 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | i = 1
while True:
n = input()
if n == 0:
break
print("Case ",i,": ",n,sep="") |
s233799949 | p02396 | u775160104 | 1488189977 | Python | Python3 | py | Runtime Error | 0 | 0 | 124 | l = map(int, input().splitlines())
cnt = 0
while True:
if l[cnt] == 0:break
print ("Case%d: %d" &(cnt + 1, l[cnt] )) |
s723826632 | p02396 | u130834228 | 1488724650 | Python | Python3 | py | Runtime Error | 0 | 0 | 239 | l = map(int, input().split()) #python2?????¨???????????§?????????python?????¨????????????????????§???????????????
i = 1
list = list(l)
while(1):
if list[i-1] != 0:
print ("Case "+str(i)+": "+str(list[i-1]))
i = i+1
else:
break |
s136786230 | p02396 | u130834228 | 1488724713 | Python | Python3 | py | Runtime Error | 0 | 0 | 239 | l = map(int, input().split()) #python2?????¨???????????§?????????python?????¨????????????????????§???????????????
i = 1
list = list(l)
while(1):
if list[i-1] != 0:
print ("Case "+str(i)+": "+str(list[i-1]))
i = i+1
else:
break |
s967097347 | p02396 | u130834228 | 1488724762 | Python | Python3 | py | Runtime Error | 0 | 0 | 151 | l = map(int, input().split())
i = 1
list = list(l)
while(1):
if list[i-1] != 0:
print ("Case "+str(i)+": "+str(list[i-1]))
i = i+1
else:
break |
s899425299 | p02396 | u130834228 | 1488725588 | Python | Python3 | py | Runtime Error | 0 | 0 | 257 | while(1):
l = map(int, input().split()) #python2?????¨???????????§?????????python?????¨????????????????????§???????????????
i = 1
li = list(l)
while(1):
if list[i-1] != 0:
print ("Case "+str(i)+": "+str(list[i-1]))
i = i+1
else:
break |
s497832011 | p02396 | u156091054 | 1488783228 | Python | Python3 | py | Runtime Error | 0 | 0 | 131 | import sys
while True:
x = sys.stdin.readline.strip()
if x == "0":
break
print("Case %d: %s"%(i, x))
i += 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.