s_id
string
p_id
string
u_id
string
date
string
language
string
original_language
string
filename_ext
string
status
string
cpu_time
string
memory
string
code_size
string
code
string
error
string
stdout
string
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])
Traceback (most recent call last): File "/tmp/tmphjt91rdm/tmp4f4ytxu5.py", line 1, in <module> w,h,x,y,r = map(input().split()) ^^^^^^^ EOFError: EOF when reading a line
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])
Traceback (most recent call last): File "/tmp/tmpjx1kis9q/tmpabk7xvnq.py", line 1, in <module> w,h,x,y,r = map(input().split()) ^^^^^^^ EOFError: EOF when reading a line
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)])
Traceback (most recent call last): File "/tmp/tmpa8zlib6p/tmp9qkfgjds.py", line 1, in <module> w,h,x,y,r = map(input().split()) ^^^^^^^ EOFError: EOF when reading a line
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
File "/tmp/tmp6h7u88j6/tmp8wx0qz1q.py", line 2 print(['No','Yes'][(r<=x<=w-r)*(r<=y<=h-r)])in ^ SyntaxError: invalid syntax
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')
File "/tmp/tmpn7tsmlqa/tmpzkizg3t3.py", line 3 if W > r + x and H > r + y and x => r and y => r : ^ SyntaxError: invalid syntax
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"
File "/tmp/tmpj9snxd77/tmp6365l0rk.py", line 4 print "No" ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
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"
File "/tmp/tmpd63nhpg7/tmpye0byi_i.py", line 4 print "No" ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
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"
File "/tmp/tmpp49eytfo/tmp56nr61cp.py", line 4 print "No" ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
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")
File "/tmp/tmp96p_cfjq/tmpjeqzwr7p.py", line 2 if r=<x=<(W-r) and r=<y=<(H-r): ^ SyntaxError: invalid syntax
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")
File "/tmp/tmpp3zv4z6l/tmp6q3detpm.py", line 1 W , H, x, y、r = map(int, input().split()) ^ SyntaxError: invalid character '、' (U+3001)
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")
File "/tmp/tmpiionzmo1/tmp8kkzhj_n.py", line 1 W , H, x, y、r = map(int, input().split()) ^ SyntaxError: invalid character '、' (U+3001)
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")
File "/tmp/tmpjgdc8q11/tmp9z7f7bdq.py", line 1 W , H, x, y、r = map(int, input().split()) ^ SyntaxError: invalid character '、' (U+3001)
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")
File "/tmp/tmpxdn70pvi/tmp04vfe9kh.py", line 1 W , H, x, y、r = map(int, input().split()) ^ SyntaxError: invalid character '、' (U+3001)
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")
File "/tmp/tmp98fwictm/tmpd6y43vz1.py", line 1 W , H, x, y、r = map(int, input().split()) ^ SyntaxError: invalid character '、' (U+3001)
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")
Traceback (most recent call last): File "/tmp/tmpiel5e7a2/tmppuss1svs.py", line 1, in <module> W, H, x, y, r = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
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")
File "/tmp/tmpc4elh6f0/tmpsdz9u8ct.py", line 10 if a = "y": ^^^^^^^ SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
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")
File "/tmp/tmpgyrvt7zb/tmpbhkwnelp.py", line 13 if a = true: ^^^^^^^^ SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
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")
File "/tmp/tmptjum38o3/tmp_2_6uqv6.py", line 12 if a = true: ^^^^^^^^ SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
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")
File "/tmp/tmpj8txxvt5/tmps0h8fm8i.py", line 12 if a = True: ^^^^^^^^ SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
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')
Traceback (most recent call last): File "/tmp/tmpktoonjjm/tmp_8yx9n7_.py", line 1, in <module> W,H,x,y,r = int(input().splite()) ^^^^^^^ EOFError: EOF when reading a line
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')
Traceback (most recent call last): File "/tmp/tmp_16kr71_/tmpte8pi3jr.py", line 2, in <module> x = input().split(' ') ^^^^^^^ EOFError: EOF when reading a line
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')
Traceback (most recent call last): File "/tmp/tmpdd77jb2d/tmpzjwsv7f5.py", line 2, in <module> z = input().split(' ') ^^^^^^^ EOFError: EOF when reading a line
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')
File "/tmp/tmpphx5fn1d/tmpuz3cpy25.py", line 9 if h >= top and bottom >= and right >= top and left >= 0: ^^^ SyntaxError: invalid syntax
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:
File "/tmp/tmpwcu5gumt/tmpbs7obvwl.py", line 5 IndentationError: expected an indented block after 'else' statement on line 4
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")
File "/tmp/tmp_ggyzl7z/tmpilcws3ti.py", line 2 if x >= r and x =< w-r and y >= r and y =< h-r: ^ SyntaxError: invalid syntax
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')
Traceback (most recent call last): File "/tmp/tmppn462wiz/tmpjb60vteo.py", line 1, in <module> w,h,x,y,r = map(int, raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
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')
Traceback (most recent call last): File "/tmp/tmpdq01qurh/tmprg8ehfsx.py", line 1, in <module> w,h,x,y,r = map(int, raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
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)
Traceback (most recent call last): File "/tmp/tmpknqts8q7/tmpu9bgf0ez.py", line 1, in <module> W, H ,x, y, r = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
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)
Traceback (most recent call last): File "/tmp/tmp8ssnko29/tmpvqaw7qew.py", line 1, in <module> W,H,x,y,r=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
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)
Traceback (most recent call last): File "/tmp/tmpt2v07yfz/tmpmu_a2sbg.py", line 1, in <module> W,H,x,y,r=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
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)
Traceback (most recent call last): File "/tmp/tmpqxtp7_4z/tmpc8wbdd0d.py", line 1, in <module> W,H,x,y,r=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
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")
Traceback (most recent call last): File "/tmp/tmpd0lr83zd/tmp85a7p664.py", line 1, in <module> W,H,x,y,r=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
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")
Traceback (most recent call last): File "/tmp/tmpnj1w4v1_/tmpseq2pmqa.py", line 1, in <module> W,H,x,y,r=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
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')
Traceback (most recent call last): File "/tmp/tmpv9arwfbq/tmpblhvar_y.py", line 3, in <module> a = [int(i) for i in input().rstrip().split()] ^^^^^^^ EOFError: EOF when reading a line
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; }
File "/tmp/tmp11cvjhr8/tmpio0wihpc.py", line 3 using namespace std; ^^^^^^^^^ SyntaxError: invalid syntax
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; }
File "/tmp/tmpiiv24o3q/tmpiy9kumln.py", line 4 using namespace std; ^^^^^^^^^ SyntaxError: invalid syntax
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; }
File "/tmp/tmpthc169mk/tmpja1j8a_g.py", line 4 using namespace std; ^^^^^^^^^ SyntaxError: invalid syntax
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; }
File "/tmp/tmpp1acd4w7/tmpnqjd2dsn.py", line 4 using namespace std; ^^^^^^^^^ SyntaxError: invalid syntax
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; }
File "/tmp/tmp3v6w2teu/tmpkekgzta4.py", line 3 using namespace std; ^^^^^^^^^ SyntaxError: invalid syntax
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
Traceback (most recent call last): File "/tmp/tmpvr0emmq8/tmp88udsg7u.py", line 3, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
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
Traceback (most recent call last): File "/tmp/tmpe0bdqozv/tmppr54ib_3.py", line 3, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
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)
Traceback (most recent call last): File "/tmp/tmptsumk4o6/tmpvbogzgwo.py", line 5, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
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) } }
File "/tmp/tmp4l64xt60/tmpaboham5_.py", line 1 package main ^^^^ SyntaxError: invalid syntax
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) } }
File "/tmp/tmp4banqtsa/tmp0or5mc1p.py", line 1 package main ^^^^ SyntaxError: invalid syntax
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))
File "/tmp/tmpj96eqv0h/tmpxelvq60w.py", line 3 x=int(input()) ^ IndentationError: expected an indented block after 'while' statement on line 2
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
File "/tmp/tmp6qx5wc4t/tmp0nhlf3fa.py", line 3 x=int(input()) ^ IndentationError: expected an indented block after 'while' statement on line 2
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
File "/tmp/tmpsu3_0gvt/tmpwbyde5g4.py", line 3 x = int(input()) ^ IndentationError: expected an indented block after 'while' statement on line 2
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
File "/tmp/tmpkxqv91bx/tmpsgyofbgx.py", line 3 x=int(input()) ^ IndentationError: expected an indented block after 'while' statement on line 2
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
File "/tmp/tmpl48enm1a/tmpu49znulr.py", line 3 x=int(input()) ^ IndentationError: expected an indented block after 'while' statement on line 2
s078353672
p02396
u281808376
1540283916
Python
Python3
py
Runtime Error
0
0
71
i=1 while int(input())!=0: print("Case "+str(i):+" "+str(input()))
File "/tmp/tmphx7r4daq/tmp38mldtv3.py", line 3 print("Case "+str(i):+" "+str(input())) ^ SyntaxError: invalid syntax
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
Traceback (most recent call last): File "/tmp/tmps4ky2sby/tmp6tjv22mf.py", line 3, in <module> print("Case"+" "+str(i)+":"+" "+input()) ^^^^^^^ EOFError: EOF when reading a line
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
File "/tmp/tmpyc3xj2t5/tmppbp8dk7k.py", line 3 int(input())=x ^^^^^^^^^^^^ SyntaxError: cannot assign to function call here. Maybe you meant '==' instead of '='?
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
File "/tmp/tmpb8h7rv5v/tmp7sk6vtst.py", line 6 print("Case {}: {}".format(i,x)) ^ IndentationError: unindent does not match any outer indentation level
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}')
File "/tmp/tmpla9ukek2/tmpv1fbxxtz.py", line 4 i++ ^ SyntaxError: invalid syntax
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)
Traceback (most recent call last): File "/tmp/tmpkc96q52s/tmpoegcn_oj.py", line 3, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
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}')
File "/tmp/tmpvcuu1ml5/tmpqgxwdp46.py", line 4 i++ ^ SyntaxError: invalid syntax
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}")
File "/tmp/tmpo7h2wp2f/tmpw_autu97.py", line 3 if((x = int(input())) == 0) break; ^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
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
File "/tmp/tmp_rncah32/tmpu63m42so.py", line 3 x=int(input())"文字列なのでint()でキャスト" ^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax
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++
File "/tmp/tmpggsl_gez/tmpdvx0nkx6.py", line 7 i++ ^ SyntaxError: invalid syntax
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
File "/tmp/tmpt6r7wh1v/tmpath53a8r.py", line 3 x=int(input())"文字列なのでint()でキャスト" ^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax
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
File "/tmp/tmp9knh5d9v/tmp7j_28d3o.py", line 4 if(x==0) break ^^^^^ SyntaxError: invalid syntax
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
File "/tmp/tmpgbokb_5n/tmpszc0ygbf.py", line 3 x = int(input())) ^ SyntaxError: unmatched ')'
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
File "/tmp/tmp_d1qjqf2/tmpq2w7faqc.py", line 3 x = int(input())) ^ SyntaxError: unmatched ')'
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
File "/tmp/tmp741ou13l/tmpog8_we1j.py", line 3 x = int(input())) ^ SyntaxError: unmatched ')'
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
File "/tmp/tmpgrtf8zxr/tmpo_cduq1l.py", line 4 if(x==0) break ^^^^^ SyntaxError: invalid syntax
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
File "/tmp/tmpphat7_n_/tmpcdohe0xx.py", line 5 break ^ IndentationError: expected an indented block after 'if' statement on line 4
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
File "/tmp/tmp_ah3q8bu/tmpiq5y9p7z.py", line 5 break ^ IndentationError: expected an indented block after 'if' statement on line 4
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}):
File "/tmp/tmpmvogk52g/tmpvmv55x1d.py", line 6 else print(f'Case{i}: {a}): ^ SyntaxError: unterminated string literal (detected at line 6)
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
File "/tmp/tmp07izalpv/tmp28ade0xk.py", line 7 print(f'Case{i}: {a}) ^ SyntaxError: unterminated string literal (detected at line 7)
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))
Traceback (most recent call last): File "/tmp/tmpcmz7yyh0/tmp250mycgr.py", line 1, in <module> for i in range(): ^^^^^^^ TypeError: range expected at least 1 argument, got 0
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()))
File "/tmp/tmpheq6e0jt/tmp6exodh50.py", line 5 break ^ IndentationError: expected an indented block after 'if' statement on line 4
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()))
Traceback (most recent call last): File "/tmp/tmpm2scokft/tmp6mdkr6yw.py", line 2, in <module> while true: ^^^^ NameError: name 'true' is not defined. Did you mean: 'True'?
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()))
Traceback (most recent call last): File "/tmp/tmp5hvis1qt/tmpg48sbck4.py", line 2, in <module> while true: ^^^^ NameError: name 'true' is not defined. Did you mean: 'True'?
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
Traceback (most recent call last): File "/tmp/tmprnhr8jh8/tmpjrwkbwv4.py", line 2, in <module> while true: ^^^^ NameError: name 'true' is not defined. Did you mean: 'True'?
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
Traceback (most recent call last): File "/tmp/tmp3ee3qxxi/tmpv30jdrl0.py", line 2, in <module> while true: ^^^^ NameError: name 'true' is not defined. Did you mean: 'True'?
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
Traceback (most recent call last): File "/tmp/tmpl70f1559/tmpsg9n31cr.py", line 2, in <module> while true: ^^^^ NameError: name 'true' is not defined. Did you mean: 'True'?
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
Traceback (most recent call last): File "/tmp/tmp4rv20nu6/tmpbn2t5fbp.py", line 2, in <module> while true: ^^^^ NameError: name 'true' is not defined. Did you mean: 'True'?
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
File "/tmp/tmpxt81i4fy/tmpbrdwy0qq.py", line 7 print("Case {}: {}"format(counter,x)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
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
Traceback (most recent call last): File "/tmp/tmpbtxzhldp/tmp0lxjeq4h.py", line 2, in <module> while true: ^^^^ NameError: name 'true' is not defined. Did you mean: 'True'?
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
File "/tmp/tmpkrs66of6/tmpgqjh_blu.py", line 7 print("Case%d%d.format(counter,x)) ^ SyntaxError: unterminated string literal (detected at line 7)
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
File "/tmp/tmpdynh9ebt/tmpuhq1fnyv.py", line 7 print("Case%d:%d.format(counter,x)) ^ SyntaxError: unterminated string literal (detected at line 7)
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
File "/tmp/tmp3686cya4/tmprcqhjel_.py", line 7 print("Case %d:%d.format(counter,x)) ^ SyntaxError: unterminated string literal (detected at line 7)
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
File "/tmp/tmpqeyli2br/tmpgc3lzz8_.py", line 4 if x == 0 ^ SyntaxError: expected ':'
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
File "/tmp/tmp0gfdgjo7/tmpyehqnhj_.py", line 4 if x == 0 ^ SyntaxError: expected ':'
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()
File "/tmp/tmp97eghoh_/tmpcu912wuh.py", line 3 while (x! = "0"): ^ SyntaxError: invalid syntax
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])
Traceback (most recent call last): File "/tmp/tmpvyslxf1v/tmpo7lo9ek2.py", line 1, in <module> x <- list(map(int(), input().split())) ^ NameError: name 'x' is not defined
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])
Traceback (most recent call last): File "/tmp/tmp9r972s0x/tmpv2jeqduj.py", line 1, in <module> x <- list(map(int(), input().split())) ^ NameError: name 'x' is not defined
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])
Traceback (most recent call last): File "/tmp/tmp1rgarkdd/tmpcwpquk1p.py", line 1, in <module> x <- list(map(int(), input().split())) ^ NameError: name 'x' is not defined
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)
Traceback (most recent call last): File "/tmp/tmplcnbtkgt/tmp4a7htyr_.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
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)
Traceback (most recent call last): File "/tmp/tmppe2bfjw2/tmp4z0p6tw1.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
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))
Traceback (most recent call last): File "/tmp/tmp4odo7tza/tmpokws9pa_.py", line 2, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
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)
Traceback (most recent call last): File "/tmp/tmplh4lyw0v/tmphi371i_9.py", line 2, in <module> while true: ^^^^ NameError: name 'true' is not defined. Did you mean: 'True'?
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)
Traceback (most recent call last): File "/tmp/tmpue0gwsur/tmpsvvrmezl.py", line 4, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
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)
Traceback (most recent call last): File "/tmp/tmp023ekwuo/tmpgrzwokfu.py", line 4, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
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)
Traceback (most recent call last): File "/tmp/tmprxl23lel/tmpxvdgq9_a.py", line 4, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
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))
Traceback (most recent call last): File "/tmp/tmp8k3e0hzm/tmpiku6qzjx.py", line 4, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
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))
Traceback (most recent call last): File "/tmp/tmp7_z75kkp/tmp1kak2ocv.py", line 4, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
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))
Traceback (most recent call last): File "/tmp/tmp9u6hi106/tmpfvkuqvqk.py", line 4, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
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))
Traceback (most recent call last): File "/tmp/tmp8wggjryv/tmpktoqe4td.py", line 4, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
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))
Traceback (most recent call last): File "/tmp/tmpwg4e4vkt/tmpc9et4u4c.py", line 4, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line