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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s493546977 | p02394 | u244493040 | 1523627829 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | w,h,x,y,r = map(input().split())
print(['No','Yes'][r<=x<=w-r & r<=y<=h-r])
|
s478221074 | p02394 | u244493040 | 1523627838 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | w,h,x,y,r = map(input().split())
print(['No','Yes'][r<=x<=w-r and r<=y<=h-r])
|
s819267069 | p02394 | u244493040 | 1523627869 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | w,h,x,y,r = map(input().split())
print(['No','Yes'][(r<=x<=w-r)*(r<=y<=h-r)])
|
s461361972 | p02394 | u244493040 | 1523627957 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | w,h,x,y,r = map(int,input().split())
print(['No','Yes'][(r<=x<=w-r)*(r<=y<=h-r)])in
|
s255030604 | p02394 | u843169619 | 1523871048 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | W,H,x,y,r = map(int,input().split())
if W > r + x and H > r + y and x => r and y => r :
print('Yes')
else:
print('No')
|
s316725412 | p02394 | u843169619 | 1523871150 | Python | Python3 | py | Runtime Error | 0 | 0 | 176 | W,H,x,y,r = map(int,input().split())
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"
|
s802111507 | p02394 | u843169619 | 1523871165 | Python | Python3 | py | Runtime Error | 0 | 0 | 176 | W,H,x,y,r = map(int,input().split())
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"
|
s239839191 | p02394 | u843169619 | 1523871169 | Python | Python3 | py | Runtime Error | 0 | 0 | 176 | W,H,x,y,r = map(int,input().split())
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"
|
s946019741 | p02394 | u074747865 | 1524123628 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | W,H,x,y,r=map(int, input().split())
if r=<x=<(W-r) and r=<y=<(H-r):
print("Yes")
else:
print("No")
|
s734513541 | p02394 | u648117624 | 1524200060 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | W , H, x, y、r = map(int, input().split())
if r <= x <= W -r:
if r <= y ,= H -r:
print("Yes")
else:
print("No")
|
s233980313 | p02394 | u648117624 | 1524200107 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | W , H, x, y、r = map(int, input().split())
if (r <= x <= W -r) and (r <= y ,= H -r):
print("Yes")
else:
print("No")
|
s402035231 | p02394 | u648117624 | 1524200254 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | W , H, x, y、r = map(int, input().split())
if r <= x <= W -r) and (r <= y <= H -r):
print("Yes")
else:
print("No")
|
s323998385 | p02394 | u648117624 | 1524200275 | Python | Python3 | py | Runtime Error | 0 | 0 | 136 | W , H, x, y、r = map(int, input().split())
if r <= x and x <= W -r and r <= y and y<= H -r:
print("Yes")
else:
print("No")
|
s650981121 | p02394 | u648117624 | 1524200592 | Python | Python3 | py | Runtime Error | 0 | 0 | 140 | W , H, x, y、r = map(int, input().split())
if r <= x and x <= (W -r) and r <= y and y<= (H -r):
print("Yes")
else:
print("No")
|
s145524269 | p02394 | u836133197 | 1524488528 | Python | Python3 | py | Runtime Error | 0 | 0 | 130 | W, H, x, y, r = map(int, input().split())
if r < x and r < y and y < (h-r) and x < (W-r):
print("Yes")
else:
print("No")
|
s520519033 | p02394 | u729486845 | 1524583500 | Python | Python3 | py | Runtime Error | 0 | 0 | 173 | w,h,x,y,r = map(int, input().split())
a = "n"
if (x > r) and (y > r):
if(x+r < w) and (y+r < h):
a = "y"
if a = "y":
print("Yes")
else:
print("No")
|
s066727585 | p02394 | u729486845 | 1524583633 | Python | Python3 | py | Runtime Error | 0 | 0 | 168 |
w,h,x,y,r = map(int, input().split())
a = true
if x<r or w-r<x:
a = false
if y<r or h-r<y:
a = false
if a = true:
print("Yes")
else:
print("No")
|
s811779457 | p02394 | u729486845 | 1524583660 | Python | Python3 | py | Runtime Error | 0 | 0 | 167 | w,h,x,y,r = map(int, input().split())
a = true
if x<r or w-r<x:
a = false
if y<r or h-r<y:
a = false
if a = true:
print("Yes")
else:
print("No")
|
s320394506 | p02394 | u729486845 | 1524583733 | Python | Python3 | py | Runtime Error | 0 | 0 | 181 | w,h,x,y,r = map(int, input().split())
a = True
if x < r or w - r < x :
a = False
if y < r or h - r < y :
a = False
if a = True:
print("Yes")
else:
print("No")
|
s371839891 | p02394 | u876060624 | 1524711376 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | W,H,x,y,r = int(input().splite())
if x+r < W and y+r < H :
print('Yes')
else:
print('No')
|
s824515610 | p02394 | u532590372 | 1525496843 | Python | Python | py | Runtime Error | 0 | 0 | 239 | if __name__ == '__main__':
x = input().split(' ')
W = x[0]
H = x[1]
x = x[2]
y = x[3]
r = x[4]
if x - r < 0 or x + r > W:
print('No')
if y - r < 0 or y + r > H:
print('No')
else:
print('Yes')
|
s144882984 | p02394 | u532590372 | 1525496923 | Python | Python3 | py | Runtime Error | 0 | 0 | 237 | if __name__ == '__main__':
z = input().split(' ')
W = z[0]
H = z[1]
x = z[2]
y = z[3]
r = z[4]
if x - r < 0 or x + r > W:
print('No')
if y - r < 0 or y + r > H:
print('No')
else:
print('Yes')
|
s647941766 | p02394 | u168166573 | 1525587720 | Python | Python3 | py | Runtime Error | 0 | 0 | 214 | input = '5 4 2 2 1'#W,H,x,y,r
w, h, x, y, r = input1.split()
top = y + r
bottom = y - r
left = x - r
right = x + r
if h >= top and bottom >= and right >= top and left >= 0:
print('Yes')
else:
print('No')
|
s363902991 | p02394 | u800997102 | 1525860682 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | w,h,x,y,r=map(int,input().split())
if x<r or y<r or x+r>w or y+r>h:
print("No")
else:
|
s204674756 | p02394 | u406434162 | 1526567694 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | w,h,x,y,r = map(int,input().split())
if x >= r and x =< w-r and y >= r and y =< h-r:
print("Yes")
else:
print("No")
|
s047048534 | p02394 | u527389300 | 1526622578 | Python | Python3 | py | Runtime Error | 0 | 0 | 142 | w,h,x,y,r = map(int, raw_input().split())
if 0 <= x - r and x + r <= w and 0 <= y - r and y + r <= h:
print('Yes')
else:
print('No')
|
s614501355 | p02394 | u527389300 | 1526622701 | Python | Python3 | py | Runtime Error | 0 | 0 | 142 | w,h,x,y,r = map(int, raw_input().split())
if 0 <= x - r and x + r <= w and 0 <= y - r and y + r <= h:
print('Yes')
else:
print('No')
|
s018777180 | p02394 | u098047375 | 1527035511 | Python | Python3 | py | Runtime Error | 0 | 0 | 119 | W, H ,x, y, r = map(int,input().split())
if r <= x and x <= W-r and r <= y and y <= H-r:
print(Yes)
else:print(No)
|
s487946873 | p02394 | u500257793 | 1527071322 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | W,H,x,y,r=map(int,input().split())
W=-r;H=-r;
if min(x,y)>=r and x<=W and y<=H:
print(Yes)
else:
print(No)
|
s895848102 | p02394 | u500257793 | 1527071402 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | W,H,x,y,r=map(int,input().split())
W=-r;H=-r;
if min([x,y])>=r and x<=W and y<=H:
print(Yes)
else:
print(No)
|
s533991822 | p02394 | u500257793 | 1527071513 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | W,H,x,y,r=map(int,input().split())
W=-r;H=-r;
if r<=x and r<=y and x<=W and y<=H:
print(Yes)
else:
print(No)
|
s437889784 | p02394 | u500257793 | 1527071640 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | W,H,x,y,r=map(int,input().split())
W=-r;H=-r;
if min([x,y]>=r)and x<=W and y<=H:
print("Yes")
else:
print("No")
|
s255678605 | p02394 | u500257793 | 1527071709 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | W,H,x,y,r=map(int,input().split())
if min([x,y]>=r)and x<=(W-r) and y<=(H-r):
print("Yes")
else:
print("No")
|
s102327072 | p02394 | u922112509 | 1529114735 | Python | Python3 | py | Runtime Error | 0 | 0 | 313 | # Circle in a Rectangle
a = [int(i) for i in input().rstrip().split()]
rectangle = [a[0], a[1]]
circleCenter = [a[2], a[3]]
circleRadius = a[4]
if a[2] - a[4] >= 0 and a[2] + a[4] <= a[0]:
if a[3] - [4] >= 0 and a[3] + a[4] <= a[1]:
print('Yes')
else:
print('No')
else:
print('No')
|
s779062248 | p02396 | u917722865 | 1530781268 | Python | Python3 | py | Runtime Error | 0 | 0 | 235 | #include<iostream>
#include<string>
using namespace std;
int main()
{
string array[10001];
int i = 0;
while (getline(cin, array[++i]), array[i] != "0")
{
cout << "Case " << i << ": " << array[i] << endl;
}
return 0;
}
|
s103995439 | p02396 | u917722865 | 1530781379 | Python | Python3 | py | Runtime Error | 0 | 0 | 220 | #include <iostream>
#include <string>
using namespace std;
int main()
{
string array[10001];
int i = 0;
while (getline(cin,array[++i]), array[i]!="0")
{
cout << "Case " << i << ": " << array[i];
}
return 0;
}
|
s142554484 | p02396 | u917722865 | 1530782170 | Python | Python3 | py | Runtime Error | 0 | 0 | 219 | #include <iostream>
#include <string>
using namespace std;
int main()
{
string array[10001];
int i = 0;
while (cin>>array[++i], array[i]!="0")
{
cout << "Case " << i << ": " + array[i] << endl;
}
return 0;
}
|
s669707175 | p02396 | u917722865 | 1530782796 | Python | Python3 | py | Runtime Error | 0 | 0 | 232 | #include <iostream>
#include <string>
using namespace std;
int main()
{
int array[10001];
int i = 0;
while (cin>>array[++i]){}
i = 0;
while (array[++i])
{
cout << "Case " << i << ": " << array[i] << endl;
}
return 0;
}
|
s771685063 | p02396 | u917722865 | 1530783008 | Python | Python3 | py | Runtime Error | 0 | 0 | 214 | #include <iostream>
using namespace std;
int main()
{
int array[10001];
int i = 0;
while (cin>>array[++i]){}
i = 0;
while (array[++i])
{
cout << "Case " << i << ": " << array[i] << endl;
}
return 0;
}
|
s075706940 | p02396 | u452254177 | 1531493900 | Python | Python3 | py | Runtime Error | 0 | 0 | 140 | a5=[]
while 1:
x=int(input())
if x==0:
break
a5.append(x)
j = 0
for i in a5:
print("Case " + j+1+": "+ i)
j=j+1
|
s621409471 | p02396 | u452254177 | 1531493969 | Python | Python3 | py | Runtime Error | 0 | 0 | 143 | a5=[]
while True:
x=int(input())
if x==0:
break
a5.append(x)
j = 0
for i in a5:
print("Case " + j+1+": "+ i)
j=j+1
|
s567613312 | p02396 | u944658202 | 1532056201 | Python | Python3 | py | Runtime Error | 0 | 0 | 118 | counter=0
while True:
counter+=1
x=int(input())
if x==0:
break
print("Case "+counter+": "+x)
|
s513329073 | p02396 | u404682284 | 1535011266 | Python | Python3 | py | Runtime Error | 0 | 0 | 162 | package main
import (
"fmt"
)
func main(){
var a int
for i:=1; i<10000; i++{
fmt.Scan(&a)
if a == 0{
break
}
fmt.Printf("Case %d: %d", i, a)
}
}
|
s836622139 | p02396 | u404682284 | 1535012183 | Python | Python3 | py | Runtime Error | 0 | 0 | 157 | package main
import (
"fmt"
)
func main(){
var a int
for i:=1; ; i++{
fmt.Scan(&a)
if a == 0{
break
}
fmt.Printf("Case %d: %d\n", i, a)
}
}
|
s782776726 | p02396 | u883600689 | 1535281236 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | i=0
while True:
x=int(input())
i+=1
if x==0: break
print('Case {0}:{1}'.format(i,x))
|
s031511957 | p02396 | u883600689 | 1535281355 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | i=1
while True:
x=int(input())
if x==0: break
print("Case {0}: {1}".format(i,x))
i+=1
|
s985397565 | p02396 | u883600689 | 1535281457 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | i = 1
while True:
x = int(input())
if x == 0: break
print("Case {}: {}".format(i, n))
i += 1
|
s414688733 | p02396 | u883600689 | 1535354447 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | i=1
while True:
x=int(input())
if x==0: break
print("Case {}: {}".format(i,x))
i+=1
|
s007633541 | p02396 | u883600689 | 1535354982 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | i=1
while True:
x=int(input())
if x==0: break
print("Case {}: {}".format(i,x))
i+=1
|
s078353672 | p02396 | u281808376 | 1540283916 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | i=1
while int(input())!=0:
print("Case "+str(i):+" "+str(input()))
|
s234262245 | p02396 | u281808376 | 1540285527 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | i=1
while True:
print("Case"+" "+str(i)+":"+" "+input())
i+=1
if int(input())==0:
break
|
s872375233 | p02396 | u281808376 | 1540286510 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | i=1
while True:
int(input())=x
if x==0:
break
print("Case {}: {}".format(i,x))
i+=1
|
s822758432 | p02396 | u281808376 | 1540286778 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | i=1
while True:
x=int(input())
if x==0:
break
print("Case {}: {}".format(i,x))
i+=1
|
s809958859 | p02396 | u596993252 | 1540455159 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | i=1
while True:
n=int(input())
i++
print(f'Case {i}: {n}')
|
s524658359 | p02396 | u893058769 | 1540455181 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | i=1
while True:
x=int(input())
print("Case %d: %d",i,x)
|
s590475597 | p02396 | u596993252 | 1540455191 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | i=1
while True:
n=int(input())
i++
print(f'Case {i}: {x}')
|
s958519288 | p02396 | u075006557 | 1540455291 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | i = 1;
while True:
if((x = int(input())) == 0) break;
print(f"Case {i}: {x}")
|
s146586173 | p02396 | u893058769 | 1540455358 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | i=1
while True:
x=int(input())"文字列なのでint()でキャスト"
if(x==0) break
print(f"Case {i}:{x}")
i=i+1
|
s273451869 | p02396 | u596993252 | 1540455359 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | i=1
while True:
x=int(input())
if(x==0):
break
print(f"Case {i}: {x}")
i++
|
s819257610 | p02396 | u893058769 | 1540455364 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | i=0
while True:
x=int(input())"文字列なのでint()でキャスト"
if(x==0) break
print(f"Case {i}:{x}")
i=i+1
|
s131914160 | p02396 | u893058769 | 1540455373 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | i=0
while True:
x=int(input())
if(x==0) break
print(f"Case {i}:{x}")
i=i+1
|
s025145075 | p02396 | u075006557 | 1540455382 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | i = 1;
while True:
x = int(input()))
if(x == 0):
break;
print(f"Case {i}: {x}")
i += 1
|
s162450326 | p02396 | u075006557 | 1540455388 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | i = 1
while True:
x = int(input()))
if(x == 0):
break;
print(f"Case {i}: {x}")
i += 1
|
s342614837 | p02396 | u075006557 | 1540455402 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | i = 1
while True:
x = int(input()))
if(x == 0):
break
print(f"Case {i}: {x}")
i += 1
|
s020311210 | p02396 | u893058769 | 1540455616 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | i=0
while True:
x=int(input())
if(x==0) break
f"Case {i}:{x}"
i=i+1
|
s063611447 | p02396 | u893058769 | 1540455677 | Python | Python3 | py | Runtime Error | 0 | 0 | 153 | i=0
while True:
x=int(input())
if x==0:
break
f"Case {i}:{x}"
i=i+1
|
s201725780 | p02396 | u893058769 | 1540455682 | Python | Python3 | py | Runtime Error | 0 | 0 | 153 | i=0
while True:
x=int(input())
if x==0:
break
f"Case {i}:{x}"
i=i+1
|
s453087622 | p02396 | u861678859 | 1540455782 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | i = 1
while True:
a = int(input())
if(a == 0):
break
else print(f'Case{i}: {a}):
|
s611078787 | p02396 | u861678859 | 1540455850 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | i = 1
while True:
a = int(input())
if(a == 0):
break
else :
print(f'Case{i}: {a})
i += 1
|
s685911962 | p02396 | u901205536 | 1540780713 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | for i in range():
inpu = int(input())
if inpu == 0:
break
else:
print("Case %d: %d" % (i, inpu))
|
s652005780 | p02396 | u184749404 | 1540988575 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | counter = 1
while true:
x = input()
if x == 0 :
break
print("Case {}: {}".format(counter,input()))
|
s924765209 | p02396 | u184749404 | 1540988593 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | counter = 1
while true:
x = input()
if x == 0 :
break
print("Case {}: {}".format(counter,input()))
|
s319442534 | p02396 | u184749404 | 1540988612 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | counter = 1
while true:
x = input()
if x == 0 :
break
print("Case {}: {}".format(counter,input()))
|
s145426653 | p02396 | u184749404 | 1540988768 | Python | Python3 | py | Runtime Error | 0 | 0 | 147 | counter = 1
while true:
x = input()
if x == 0 :
break
print("Case {}: {}".format(counter,input()))
counter = counter + 1
|
s349444475 | p02396 | u184749404 | 1540988791 | Python | Python3 | py | Runtime Error | 0 | 0 | 141 | counter = 1
while true:
x = input()
if x == 0 :
break
print("Case {}: {}".format(counter,x))
counter = counter + 1
|
s755869213 | p02396 | u184749404 | 1540988883 | Python | Python3 | py | Runtime Error | 0 | 0 | 146 | counter = 1
while true:
x = int(input())
if x == 0 :
break
print("Case {}: {}".format(counter,x))
counter = counter + 1
|
s519389601 | p02396 | u184749404 | 1540989014 | Python | Python3 | py | Runtime Error | 0 | 0 | 165 | counter = 1
while true:
x = int(input())
if x == 0 :
break
else :
print("Case {}: {}".format(counter,x))
counter = counter + 1
|
s516545479 | p02396 | u184749404 | 1540989037 | Python | Python3 | py | Runtime Error | 0 | 0 | 164 | counter = 1
while true:
x = int(input())
if x == 0 :
break
else :
print("Case {}: {}"format(counter,x))
counter = counter + 1
|
s386411932 | p02396 | u184749404 | 1540989186 | Python | Python3 | py | Runtime Error | 0 | 0 | 165 | counter = 1
while true:
x = int(input())
if x == 0 :
break
else :
print("Case {}: {}".format(counter,x))
counter = counter + 1
|
s647728795 | p02396 | u184749404 | 1541160890 | Python | Python3 | py | Runtime Error | 0 | 0 | 166 | counter = 1
while True:
x = int(input())
if x == 0
break
else :
print("Case%d%d.format(counter,x))
counter = counter + 1
|
s754812209 | p02396 | u184749404 | 1541160905 | Python | Python3 | py | Runtime Error | 0 | 0 | 167 | counter = 1
while True:
x = int(input())
if x == 0
break
else :
print("Case%d:%d.format(counter,x))
counter = counter + 1
|
s022252402 | p02396 | u184749404 | 1541160916 | Python | Python3 | py | Runtime Error | 0 | 0 | 168 | counter = 1
while True:
x = int(input())
if x == 0
break
else :
print("Case %d:%d.format(counter,x))
counter = counter + 1
|
s626669816 | p02396 | u184749404 | 1541160940 | Python | Python3 | py | Runtime Error | 0 | 0 | 169 | counter = 1
while True:
x = int(input())
if x == 0
break
else :
print("Case %d:%d".format(counter,x))
counter = counter + 1
|
s890196288 | p02396 | u184749404 | 1541161006 | Python | Python3 | py | Runtime Error | 0 | 0 | 170 | counter = 1
while True:
x = int(input())
if x == 0
break
else :
print("Case {}:{} ".format(counter,x))
counter = counter + 1
|
s997135686 | p02396 | u293957970 | 1541224863 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | x = input()
i=1
while (x! = "0"):
print("Case {0}: {1}".format(i,x));
i+=1;
x=input()
|
s427519034 | p02396 | u316246166 | 1545820123 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | x <- list(map(int(), input().split()))
for i in x[i]:
print("Case 1:", x[i])
|
s837639566 | p02396 | u316246166 | 1545820229 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | x <- list(map(int(), input().split()))
for i in len(x):
print("Case 1:", x[i])
|
s664004850 | p02396 | u316246166 | 1545820283 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | x <- list(map(int(), input().split()))
for i in len(x):
print("Case", i+1, ":", x[i])
|
s723936151 | p02396 | u316246166 | 1545820483 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | x = input()
x = int(x)
for i in len(x):
if x == 0:
break
else:
print("Case", i+1, ":", x)
|
s962029972 | p02396 | u316246166 | 1545820497 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | x = input()
x = int(x)
for i in 100000:
if x == 0:
break
else:
print("Case", i+1, ":", x)
|
s875412235 | p02396 | u643542669 | 1545840213 | Python | Python3 | py | Runtime Error | 0 | 0 | 141 | array = []
x = input()
while x != 0:
array.append(x)
x = input()
for i, x in enumerate(array):
print("Case %d: %d" % (i + 1, x))
|
s207453620 | p02396 | u552594238 | 1546085222 | Python | Python3 | py | Runtime Error | 0 | 0 | 131 | count=0
while true:
count+=1
a=input()
b=len(a)
if b==0:
break
else:
print("Case",count+":",a)
|
s631625315 | p02396 | u552594238 | 1546088943 | Python | Python3 | py | Runtime Error | 0 | 0 | 136 | count=0
while True:
count=count+1
a=input()
b=len(a)
if b==0:
break
else:
print("Case",count,":",a)
|
s045586056 | p02396 | u552594238 | 1546088984 | Python | Python3 | py | Runtime Error | 0 | 0 | 137 | count=0
while True:
count=count+1
a=input()
b=len(a)
if b==0:
break
else:
print("Case",count,":",a)
|
s225830706 | p02396 | u552594238 | 1546090075 | Python | Python3 | py | Runtime Error | 0 | 0 | 139 | count=0
while True:
count=count+1
a=input()
b=len(a)
if b==0:
break
else:
print("Case "+count+": "+a)
|
s265423764 | p02396 | u552594238 | 1546090221 | Python | Python3 | py | Runtime Error | 0 | 0 | 150 | count=0
while True:
count=count+1
a=input()
b=len(a)
if b==0:
break
else:
print("Case "+str(count)+": "+str*(a))
|
s122506582 | p02396 | u552594238 | 1546090239 | Python | Python3 | py | Runtime Error | 0 | 0 | 149 | count=0
while True:
count=count+1
a=input()
b=len(a)
if b==0:
break
else:
print("Case "+str(count)+": "+str(a))
|
s393227394 | p02396 | u552594238 | 1546091075 | Python | Python3 | py | Runtime Error | 0 | 0 | 149 | count=0
while True:
count=count+1
a=input()
b=len(a)
if b==0:
break
else:
print("Case "+str(count)+": "+str(a))
|
s599802673 | p02396 | u552594238 | 1546157222 | Python | Python3 | py | Runtime Error | 0 | 0 | 149 | count=0
while True:
count=count+1
a=input()
b=len(a)
if b==0:
break
else:
print("Case "+str(count)+": "+str(a))
|
s733549356 | p02396 | u552594238 | 1546157294 | Python | Python3 | py | Runtime Error | 0 | 0 | 149 | count=0
while True:
count=count+1
a=input()
b=len(a)
if b==0:
break
else:
print("Case "+str(count)+": "+str(a))
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.