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
s949067476
p02394
u404682284
1535010443
Python
Python3
py
Runtime Error
0
0
216
package main import ( "fmt" ) func main(){ var w, h, x, y, r int fmt.Scan(&w, &h, &x, &y, &r) if x + r <= W && x - r >= 0 && y + r <= H && y - r >= 0{ fmt.Printf("Yes\n") } else { fmt.Printf("No\n") } >}
File "/tmp/tmppyext4y4/tmpsy_51n7z.py", line 1 package main ^^^^ SyntaxError: invalid syntax
s518389362
p02394
u404682284
1535010523
Python
Python3
py
Runtime Error
0
0
221
package main import ( "fmt" ) func main(){ var w, h, x, y, r int fmt.Scan(&w, &h, &x, &y, &r) if (x + r) <= w && (x - r) >= 0 && (y + r) <= h && (y - r) >= 0{ fmt.Println("Yes") } else { fmt.Println("No") } }
File "/tmp/tmpa_0yvd3s/tmpuvblby51.py", line 1 package main ^^^^ SyntaxError: invalid syntax
s608965755
p02394
u525366883
1535154610
Python
Python
py
Runtime Error
0
0
161
# coding: utf-8 # Your code here! W, H, x, y, r = map(int, raw_input().split()) if r <= x and r <= y and x+r <= W y+r <= H: print "Yes" else: print "No"
File "/tmp/tmpk07thf_a/tmpu1y23vy9.py", line 4 if r <= x and r <= y and x+r <= W y+r <= H: ^ SyntaxError: invalid syntax
s877149932
p02394
u354751877
1540344430
Python
Python
py
Runtime Error
0
0
235
d=raw_input().split(" ") l=list(map(int,d)) if(i[2]>0 and i[3]>0): if(l[0]>=(l[2]+l[4])): if(l[1]>=(l[3]+l[4])): print "Yes" else: print "No" else: print "No" else: print "No"
File "/tmp/tmpl4jtn633/tmp25vrjrok.py", line 6 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s570060043
p02394
u184749404
1540558550
Python
Python3
py
Runtime Error
0
0
108
x,y,r,W,H=(int,input().split()) if x-r<0 or x+r>W: print ("No") elif x-r>0 and x+r<W: print ("Yes")
Traceback (most recent call last): File "/tmp/tmp_kstist3/tmpqk6arjdg.py", line 1, in <module> x,y,r,W,H=(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s022204832
p02394
u184749404
1540729636
Python
Python3
py
Runtime Error
0
0
167
W,H,x,y,r,=map(int,input().split()) if x-r<0 (or) x+r>W and() y-r<0 (or) y+r>H: print ("No") elif x-r>=0 (and) x+r<=W and() y-r>=0 (and) y+r<=H: print ("Yes")
File "/tmp/tmpnzrquxic/tmpxfy0nno2.py", line 2 if x-r<0 (or) x+r>W and() y-r<0 (or) y+r>H: ^^ SyntaxError: invalid syntax
s770204723
p02394
u184749404
1540729923
Python
Python3
py
Runtime Error
0
0
167
W,H,x,y,r,=map(int,input().split()) if (x-r<0 or x+r>W) and() (y-r<0 or y+r>H): print ("No") elif (x-r>=0 and x+r<=W) and() (y-r>=0 and y+r<=H): print ("Yes")
/tmp/tmpgwxcl9ut/tmp2pnbrs_3.py:2: SyntaxWarning: 'tuple' object is not callable; perhaps you missed a comma? if (x-r<0 or x+r>W) and() (y-r<0 or y+r>H): /tmp/tmpgwxcl9ut/tmp2pnbrs_3.py:4: SyntaxWarning: 'tuple' object is not callable; perhaps you missed a comma? elif (x-r>=0 and x+r<=W) and() (y-r>=0 and y+r<=H): ...
s430281928
p02394
u316584871
1541036473
Python
Python3
py
Runtime Error
0
0
331
#include <stdio.h> int main(void) { int W,H,x,y,r; scanf("%d %d %d %d %d",&W,&H,&x,&y,&r); if (x>=r && y>=r) { if (x+r<=W && y+r<=H) { printf("Yes"); } else { printf("No"); } } else { printf("No"); } re...
File "/tmp/tmpxngdx71m/tmpb0loh38z.py", line 3 int main(void) ^^^^ SyntaxError: invalid syntax
s605270847
p02394
u962909487
1545814112
Python
Python3
py
Runtime Error
0
0
122
a,b,x,y,r = map(int,input().split()) if (x+r)>w or (y+r)>h or (x-r)<0 or (y-r)<0: print('No') else: print('Yes')
Traceback (most recent call last): File "/tmp/tmpbr1uc9z7/tmpw5rzx_92.py", line 1, in <module> a,b,x,y,r = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s766842277
p02394
u498462680
1546229121
Python
Python3
py
Runtime Error
0
0
219
Indata = [int(i) for i in input().split()] W,H,x,y,r = int(i) for i in Indata x_right = x+r x_left = x-r y_on = y+r y_under = y-r if x_right>W || x_left<0 || y_on>H || y_under<0: print("No") else: print("Yes")
File "/tmp/tmp81ox062g/tmpl83d4bne.py", line 2 W,H,x,y,r = int(i) for i in Indata ^^^ SyntaxError: invalid syntax
s689057285
p02394
u498462680
1546229159
Python
Python3
py
Runtime Error
0
0
221
Indata = [int(i) for i in input().split()] W,H,x,y,r = [int(i) for i in Indata] x_right = x+r x_left = x-r y_on = y+r y_under = y-r if x_right>W || x_left<0 || y_on>H || y_under<0: print("No") else: print("Yes")
File "/tmp/tmp187cs8nq/tmpppbqgazc.py", line 8 if x_right>W || x_left<0 || y_on>H || y_under<0: ^ SyntaxError: invalid syntax
s639256253
p02394
u733357255
1551350441
Python
Python3
py
Runtime Error
0
0
105
W,H,x,y,r = map(int,input().split()) w,h = W-r,h=r if 0<x<w and 0<y<h: print('Yes') else: print('No')
File "/tmp/tmp3o4j0msb/tmpkf95ar_i.py", line 3 w,h = W-r,h=r ^^^^^^^ SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
s318919337
p02394
u733357255
1551350456
Python
Python3
py
Runtime Error
0
0
105
W,H,x,y,r = map(int,input().split()) w,h = W-r,H=r if 0<x<w and 0<y<h: print('Yes') else: print('No')
File "/tmp/tmpt2hl35vj/tmp9ddpit8w.py", line 3 w,h = W-r,H=r ^^^^^^^ SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
s480400712
p02394
u733357255
1551350565
Python
Python3
py
Runtime Error
0
0
101
W,H,x,y,r = map(int,input().split()) w,h = W-r,H=r if x<w and y<h: print('Yes') else: print('No')
File "/tmp/tmp14zm2t7g/tmpvgw1g1um.py", line 3 w,h = W-r,H=r ^^^^^^^ SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
s535270546
p02394
u733357255
1551350710
Python
Python3
py
Runtime Error
0
0
118
W,H,x,y,r = map(int,input().split()) w,h = W-r,h=r if x<0 and w<x and y<0 and h<y: print('No') else: print('Yes')
File "/tmp/tmpdag72pjq/tmp_09q6grm.py", line 3 w,h = W-r,h=r ^^^^^^^ SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
s778169620
p02394
u984892564
1551536572
Python
Python3
py
Runtime Error
0
0
84
string = input() if x-r>0&y-r>0&x+r<W&y+r<H: print('Yes') else: print('No')
Traceback (most recent call last): File "/tmp/tmpu620dx39/tmpwbkogvpq.py", line 1, in <module> string = input() ^^^^^^^ EOFError: EOF when reading a line
s156315005
p02394
u984892564
1551536602
Python
Python3
py
Runtime Error
0
0
88
string = input() if x-r=>0&y-r=>0&x+r=<W&y+r=<H: print('Yes') else: print('No')
File "/tmp/tmpprsotbr7/tmp3apnd2od.py", line 2 if x-r=>0&y-r=>0&x+r=<W&y+r=<H: ^ SyntaxError: invalid syntax
s113883734
p02394
u870970010
1555692327
Python
Python
py
Runtime Error
0
0
182
a=input() W=a.split()[0] H=a.split()[1] x=a.split()[2] y=a.split()[3] r=a.split()[4] if (0 <= x <= W-r) and (0 <= y <= H-r) and (r<=x) and (r<=y): print("Yes) else: print("No")
File "/tmp/tmptg5p06ii/tmp7alkr9ys.py", line 9 print("Yes) ^ SyntaxError: unterminated string literal (detected at line 9)
s172469123
p02394
u870970010
1555692419
Python
Python
py
Runtime Error
0
0
183
a=input() W=a.split()[0] H=a.split()[1] x=a.split()[2] y=a.split()[3] r=a.split()[4] if (0 <= x <= W-r) and (0 <= y <= H-r) and (r<=x) and (r<=y): print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmp3x27mv2f/tmpp7ag0qw7.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s394269059
p02394
u870970010
1555692432
Python
Python
py
Runtime Error
0
0
183
a=input() W=a.split()[0] H=a.split()[1] x=a.split()[2] y=a.split()[3] r=a.split()[4] if (0 <= x <= W-r) and (0 <= y <= H-r) and (r<=x) and (r<=y): print("No") else: print("Yes")
Traceback (most recent call last): File "/tmp/tmpdwxqruih/tmp7_2as72o.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s923697085
p02394
u344890307
1555727833
Python
Python3
py
Runtime Error
0
0
187
def main(): W,H,x,y,r=map(int,input().split()) if W>=2*r AND H>=2*r AND W<=x+r AND H<=y+r: print('Yes') else: print('No') if __name__=='__main__': main()
File "/tmp/tmp9blm4m4b/tmpbyhfzhho.py", line 3 if W>=2*r AND H>=2*r AND W<=x+r AND H<=y+r: ^^^ SyntaxError: invalid syntax
s783265160
p02394
u344890307
1555728316
Python
Python3
py
Runtime Error
0
0
187
def main(): W,H,x,y,r=map(int,input().split()) if x-r>=0 AND y-r>=0 AND W>=x+r and H>=y+r: print('Yes') else: print('No') if __name__=='__main__': main()
File "/tmp/tmpaqsuhlwa/tmpslqqtyah.py", line 3 if x-r>=0 AND y-r>=0 AND W>=x+r and H>=y+r: ^^^ SyntaxError: invalid syntax
s762321931
p02394
u525395303
1555911017
Python
Python3
py
Runtime Error
0
0
38
You are not allowed to see this code.
File "/tmp/tmpl88ogzna/tmpj1xkw3s3.py", line 1 You are not allowed to see this code. ^^^ SyntaxError: invalid syntax
s812393794
p02394
u651717882
1555945611
Python
Python3
py
Runtime Error
0
0
144
W,H,x,y,r = input().split() w = int() H = int() x = int() y = int() r = int() if x + r <= W, y + r <= H: print("Yes") else: print("No")
File "/tmp/tmph_65bmcl/tmp0p2zr8pv.py", line 7 if x + r <= W, y + r <= H: ^ SyntaxError: invalid syntax
s362510031
p02394
u651717882
1555945634
Python
Python3
py
Runtime Error
0
0
149
W,H,x,y,r = input().split() w = int(W) H = int(H) x = int(x) y = int(y) r = int(r) if x + r <= W, y + r <= H: print("Yes") else: print("No")
File "/tmp/tmpvv62mc5p/tmpaz22w0q1.py", line 7 if x + r <= W, y + r <= H: ^ SyntaxError: invalid syntax
s129147139
p02394
u651717882
1555945726
Python
Python3
py
Runtime Error
0
0
144
W,H,x,y,r = input().split() w = int() H = int() x = int() y = int() r = int() if x + r <= W, y + r <= H: print("Yes") else: print("No")
File "/tmp/tmpkm36o400/tmpxief8x6x.py", line 7 if x + r <= W, y + r <= H: ^ SyntaxError: invalid syntax
s671687784
p02394
u651717882
1555945777
Python
Python3
py
Runtime Error
0
0
142
W,H,x,y,r = input().split() w = int() H = int() x = int() y = int() r = int() if x + r < W, y + r < H: print("Yes") else: print("No")
File "/tmp/tmpdx4gcshf/tmpz_4ypg0w.py", line 7 if x + r < W, y + r < H: ^ SyntaxError: invalid syntax
s367313063
p02394
u651717882
1555945800
Python
Python3
py
Runtime Error
0
0
139
W,H,x,y,r = input().split() w = int() H = int() x = int() y = int() r = int() if x+r <= W, y+r < H: print("Yes") else: print("No")
File "/tmp/tmp5ed79q6f/tmpj_36ilun.py", line 7 if x+r <= W, y+r < H: ^ SyntaxError: invalid syntax
s091055412
p02394
u651717882
1555945846
Python
Python3
py
Runtime Error
0
0
142
W,H,x,y,r = input().split() w = int() H = int() x = int() y = int() r = int() if x+r <= W and y+r < H: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmpyx997ogf/tmpxqhxb8i3.py", line 1, in <module> W,H,x,y,r = input().split() ^^^^^^^ EOFError: EOF when reading a line
s137096318
p02394
u651717882
1555946119
Python
Python3
py
Runtime Error
0
0
141
W,H,x,y,r = input().split() w = int() H = int() x = int() y = int() r = int() if x+r <= W and x -r>0: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmpjwfny5vf/tmpng6w26dn.py", line 1, in <module> W,H,x,y,r = input().split() ^^^^^^^ EOFError: EOF when reading a line
s193451827
p02394
u651717882
1555946269
Python
Python3
py
Runtime Error
0
0
177
W,H,x,y,r = input().split() w = int() H = int() x = int() y = int() r = int() if x - r >= 0 and y - r >= 0 and x + r <= w and y + r <= h: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmpobczb31u/tmp2a3rqt_9.py", line 1, in <module> W,H,x,y,r = input().split() ^^^^^^^ EOFError: EOF when reading a line
s277525563
p02394
u681232780
1556176001
Python
Python3
py
Runtime Error
0
0
121
H,W,x,y,r = map(int,input().split()) if -r < = y <= H-r : if -r < = x <= W-r : print('Yes') else : print('No')
File "/tmp/tmppy4pipst/tmp30cdo49o.py", line 3 if -r < = y <= H-r : ^ SyntaxError: invalid syntax
s809385976
p02394
u482227082
1556353234
Python
Python3
py
Runtime Error
0
0
132
w,h,x,y,r = map(int, input().split()) if x-r <= 0 or y-r <= 0 or x+r => w or y+r => h: print("No") else: print("Yes")
File "/tmp/tmpeqo91oi2/tmprc3a85z4.py", line 3 if x-r <= 0 or y-r <= 0 or x+r => w or y+r => h: ^ SyntaxError: invalid syntax
s210733750
p02394
u994696641
1556503521
Python
Python3
py
Runtime Error
0
0
95
W,H,x,y,r = list(map(int,input().split())) print("No" if x<r or x+r>W or y<r y+r>H else "Yes")
File "/tmp/tmpe17dymlh/tmp13tb1luy.py", line 2 print("No" if x<r or x+r>W or y<r y+r>H else "Yes") ^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: expected 'else' after 'if' expression
s965031499
p02394
u748884386
1556621081
Python
Python3
py
Runtime Error
0
0
56
w,h x,y,r=map(int,input().split()) if w-r>=x and h-r>=y
File "/tmp/tmpsqypem5j/tmp8ehrbrik.py", line 1 w,h x,y,r=map(int,input().split()) ^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
s225117111
p02394
u748884386
1556621189
Python
Python3
py
Runtime Error
0
0
56
w,h,x,y,r=map(int,input().split()) if w-r>=x and h-r>=y
File "/tmp/tmp70_k245e/tmp4yd7nvje.py", line 2 if w-r>=x and h-r>=y ^ SyntaxError: expected ':'
s577226942
p02394
u725843728
1556686793
Python
Python3
py
Runtime Error
0
0
115
W,H,x,y,r = map(int,input().split()) if 0<=x-r and x+r<=W and 0<=y-r and y+r<=H: print('Yes') else: print('No)
File "/tmp/tmpbhxvl7ux/tmpss8yekdc.py", line 5 print('No) ^ SyntaxError: unterminated string literal (detected at line 5)
s105391220
p02394
u777181309
1556690233
Python
Python3
py
Runtime Error
0
0
130
W, H, x, y, r = map(int, input().split()) if ((2*r <= (x+r) <= W) & (2*r <= (y+r) <= H): print('Yes') else: print('No')
File "/tmp/tmpxgb5ddf_/tmple3xu8vb.py", line 3 if ((2*r <= (x+r) <= W) & (2*r <= (y+r) <= H): ^ SyntaxError: invalid syntax
s833026700
p02394
u003684951
1558932403
Python
Python3
py
Runtime Error
0
0
237
list = map(int,raw_input().split()) W = list[0] H = list[1] x = list[2] y = list[3] r = list[4] 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/tmp834moimh/tmpueqjtmp4.py", line 9 print "No" ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s108858003
p02394
u003684951
1558932807
Python
Python3
py
Runtime Error
0
0
175
list = map(int,raw_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/tmpsh91oufc/tmpfunf1o7a.py", line 4 print "No" ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s481880805
p02394
u003684951
1558933092
Python
Python3
py
Runtime Error
0
0
176
W, H, x, y, = map(int,input().split()) if x-r : print("No") elif x + r : print ("No") elif y-r : print ("No") elif y+r : print ("No") else: print ("Yes")
Traceback (most recent call last): File "/tmp/tmp1lmmoygp/tmp40e22e3w.py", line 1, in <module> W, H, x, y, = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s771206122
p02394
u003684951
1558933248
Python
Python3
py
Runtime Error
0
0
176
W, H, x, y,r = map(int,input().split()) if x-r : print("No") elif x + r : print ("No") elif y-r : print ("No") elif y+r : print ("No") else: print ("Yes"
File "/tmp/tmp3_fc4em1/tmpczgf4otc.py", line 13 print ("Yes" ^ SyntaxError: '(' was never closed
s066970094
p02394
u483716678
1558935953
Python
Python3
py
Runtime Error
0
0
231
w, h , x ,y ,r = map(int,input().split()) xLongLeft = x-r xLongRight = x + r yLongTop = y + r yLongBot = y - r if((xLongLeft >= 0 and yLongBot >= 0) and (xLongRight <= w and yLongTop <= h): print('Yes') else: print('No')
File "/tmp/tmppgc8w4bh/tmp9mt8buck.py", line 9 if((xLongLeft >= 0 and yLongBot >= 0) and (xLongRight <= w and yLongTop <= h): ^ SyntaxError: invalid syntax
s845663434
p02394
u483716678
1558936007
Python
Python
py
Runtime Error
0
0
231
w, h , x ,y ,r = map(int,input().split()) xLongLeft = x-r xLongRight = x + r yLongTop = y + r yLongBot = y - r if((xLongLeft >= 0 and yLongBot >= 0) and (xLongRight <= w and yLongTop <= h)): print('Yes') else: print('No')
Traceback (most recent call last): File "/tmp/tmp0k8ji870/tmp8v4cz562.py", line 1, in <module> w, h , x ,y ,r = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s854640440
p02394
u629874472
1559027510
Python
Python3
py
Runtime Error
0
0
120
W,H,x,y,r = mao(int,input().split()) if x-r>=0 and x+r<=W and y-r>=0 and y+r<=0: print('Yes') else: print('No')
Traceback (most recent call last): File "/tmp/tmptleebz2_/tmp0uv_g2s7.py", line 1, in <module> W,H,x,y,r = mao(int,input().split()) ^^^ NameError: name 'mao' is not defined. Did you mean: 'max'?
s979801854
p02394
u535719732
1559193895
Python
Python3
py
Runtime Error
0
0
269
num = list(map(int,input().split)) circle_px = num[2] + num[4] circle_mx = num[2] - num[4] circle_py = num[3] + num[4] circle_my = num[3] - num[4] if(circle_px <= num[0] and circle_mx >= 0 and circle_py <= num[1] and circle_py >= 0): print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmpw8rfbqhe/tmpineuel3r.py", line 1, in <module> num = list(map(int,input().split)) ^^^^^^^ EOFError: EOF when reading a line
s162759305
p02394
u804558166
1559538774
Python
Python3
py
Runtime Error
0
0
110
W, H, x, y, r=map(int, input().split()) if x>= r and x+r<=W and y>=r and y+r<= print("Yes") else: print("No")
File "/tmp/tmp4qen36a0/tmpaglvlo3o.py", line 2 if x>= r and x+r<=W and y>=r and y+r<= ^ SyntaxError: invalid syntax
s030123045
p02394
u804558166
1559538839
Python
Python3
py
Runtime Error
0
0
122
W, H, x, y, r = map(int, input().split()) if x >= r and x + r <= W and y >= r and y + r <= print("Yes") else: print("No")
File "/tmp/tmp30bb5sra/tmpcf31iekj.py", line 2 if x >= r and x + r <= W and y >= r and y + r <= ^ SyntaxError: invalid syntax
s820318372
p02394
u804558166
1559538979
Python
Python3
py
Runtime Error
0
0
124
W, H, x, y, r = map(int, input().split()) if x >= r and x + r <= W and y >= r and y + r <= H print("Yes") else: print("No")
File "/tmp/tmpxqd5514i/tmp38qb6nci.py", line 2 if x >= r and x + r <= W and y >= r and y + r <= H ^ SyntaxError: expected ':'
s102507246
p02394
u804558166
1559539003
Python
Python3
py
Runtime Error
0
0
125
W, H, x, y, r = map(int, input().split()) if x >= r and x + r <= W and y >= r and y + r <= H: print("Yes") else: print("No")
File "/tmp/tmpzp82s_p2/tmpvjk1c88d.py", line 3 print("Yes") ^ IndentationError: expected an indented block after 'if' statement on line 2
s468322076
p02394
u804558166
1559539134
Python
Python3
py
Runtime Error
0
0
128
W, H, x, y, r = map(int, input().split()) if x >= r and x + r <= W and y >= r and y + r <= H print("Yes") else: print("No")# co
File "/tmp/tmpjrigcwt1/tmps9jylj89.py", line 2 if x >= r and x + r <= W and y >= r and y + r <= H ^ SyntaxError: expected ':'
s678838643
p02394
u804558166
1559539145
Python
Python3
py
Runtime Error
0
0
124
W, H, x, y, r = map(int, input().split()) if x >= r and x + r <= W and y >= r and y + r <= H print("Yes") else: print("No")
File "/tmp/tmpbl9aoc3l/tmp_i6tcy3o.py", line 2 if x >= r and x + r <= W and y >= r and y + r <= H ^ SyntaxError: expected ':'
s736558671
p02394
u804558166
1559539164
Python
Python3
py
Runtime Error
0
0
126
W, H, x, y, r = map(int, input().split()) if x >= r and x + r <= W and y >= r and y + r <= H print("Yes") else: print("No")
File "/tmp/tmplaq2twrl/tmpnu_1avow.py", line 2 if x >= r and x + r <= W and y >= r and y + r <= H ^ SyntaxError: expected ':'
s968454658
p02394
u804558166
1559539172
Python
Python3
py
Runtime Error
0
0
128
W, H, x, y, r = map(int, input().split()) if x >= r and x + r <= W and y >= r and y + r <= H print("Yes") else: print("No")
File "/tmp/tmp5bkc7ivv/tmpmnz7u0bv.py", line 2 if x >= r and x + r <= W and y >= r and y + r <= H ^ SyntaxError: expected ':'
s619292454
p02394
u218784088
1559539257
Python
Python3
py
Runtime Error
0
0
124
W, H, x, y, r = map(int, input().split()) if x >= r and x + r <= W and y >= r and y + r <= H print("Yes") else: print("No")
File "/tmp/tmpzchgo9_3/tmp2x5ukqmq.py", line 2 if x >= r and x + r <= W and y >= r and y + r <= H ^ SyntaxError: expected ':'
s625885999
p02394
u924938296
1559539296
Python
Python3
py
Runtime Error
0
0
131
W, H, x, y, r = map(int, input().split()) if x >= r and x + r <= W and y >= r and y + r <= H print("Yes") else : print("No")
File "/tmp/tmpwf27htqv/tmp2wgxnac5.py", line 2 if x >= r and x + r <= W and y >= r and y + r <= H ^ SyntaxError: expected ':'
s281990344
p02394
u924938296
1559540027
Python
Python3
py
Runtime Error
0
0
128
W, H, x, y, r = map(int, input().split()) if x >= r and x + r <= W and y >= r and y + r <= H : print("Yes") else: print("No")
File "/tmp/tmpnrnyegzx/tmplxd256n0.py", line 3 print("Yes") ^ IndentationError: expected an indented block after 'if' statement on line 2
s727659381
p02394
u517275798
1559547449
Python
Python3
py
Runtime Error
0
0
140
W, H, x, y, r = map(int, input(). split()) if 2*r >= W or 2*r >= H or x >= W or y >= H: print(‘No’) else print(‘Yes’)
File "/tmp/tmpsvhjt33l/tmp_8xprkeb.py", line 3 print(‘No’) ^ SyntaxError: invalid character '‘' (U+2018)
s679536998
p02394
u463990569
1405706889
Python
Python
py
Runtime Error
0
0
119
w, h, x, y, r= map(int, raw_input().split()) if (w - r => x => r) and (h - r => y => r): print 'YES' else: print 'NO'
File "/tmp/tmpeti1s1dg/tmpq8hq4xjc.py", line 2 if (w - r => x => r) and (h - r => y => r): ^ SyntaxError: invalid syntax
s303764905
p02394
u463990569
1405706914
Python
Python
py
Runtime Error
0
0
119
w, h, x, y, r= map(int, raw_input().split()) if (w - r => x => r) and (h - r => y => r): print 'Yes' else: print 'No'
File "/tmp/tmpi_bhd99r/tmpvqmst2bn.py", line 2 if (w - r => x => r) and (h - r => y => r): ^ SyntaxError: invalid syntax
s455451756
p02394
u017764209
1416528370
Python
Python
py
Runtime Error
0
0
122
w,h,x,y,z = map(int,raw_input().split()) if w-r > x and h-r > y and x > 0 and y > 0: print "Yes" else: print "No"
File "/tmp/tmpnxpdzcoy/tmpiisr00ao.py", line 4 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s828701773
p02394
u017764209
1416528625
Python
Python
py
Runtime Error
0
0
122
w,h,x,y,r = map(int,raw_input().split()) if w-r > x and h-r > y and x > 0 and y > 0: print "Yes" else: print "No"
File "/tmp/tmptcsvi06w/tmpggu5vhyq.py", line 2 if w-r > x and h-r > y and x > 0 and y > 0: IndentationError: unexpected indent
s586295822
p02394
u131984977
1422241205
Python
Python3
py
Runtime Error
0
0
198
in = input().split(' ') W = int(in[0]) H = int(in[1]) x = int(in[2]) y = int(in[3]) r = int(in[4]) if x - r >= 0 and y - r >= 0 and x + r <= W and y + r <= H: print('Yes') else: print('No')
File "/tmp/tmp5bc3o4ya/tmpbpl34b39.py", line 1 in = input().split(' ') ^^ SyntaxError: invalid syntax
s657863232
p02394
u442346200
1422241304
Python
Python3
py
Runtime Error
0
0
180
i = input().split(' ') W = int(i[0]) H = int(i[1]) x = int(i[2]) y = int(i[3]) r = int(i[4]) if x - r >= 0 and y - r >=0 and x + r <= W and y + r <= H: print('Yes') else('No')
File "/tmp/tmpqwkw9tif/tmp31nso3o9.py", line 10 else('No') ^ SyntaxError: expected ':'
s553279344
p02394
u745846646
1422241354
Python
Python3
py
Runtime Error
0
0
194
i = iinput().split(' ') W = int(i[0]) H = int(i[1]) x = int(i[2]) y = int(i[3]) r = int(i[4]) if x - r >= 0 and y - r >= 0 and x + r <= W and y + r <= H: print('YES') else: print('NO')
Traceback (most recent call last): File "/tmp/tmp99cx5gk9/tmpk9cll1b7.py", line 1, in <module> i = iinput().split(' ') ^^^^^^ NameError: name 'iinput' is not defined. Did you mean: 'input'?
s678756491
p02394
u823030818
1422405750
Python
Python3
py
Runtime Error
0
0
217
(W,H,x,y,r) = input().rstrip().split(' ') W = int(w) H = int(H) x = int(x) y = int(y) r = int(r) if x -r >= 0 and y -r >= 0 x <= W and y <= H: print('Yes") if x +r < 0 and y +r <0 x >= W and y >= H: print('No')
File "/tmp/tmph1tzmp9i/tmp23y__1y4.py", line 9 print('Yes") ^ SyntaxError: unterminated string literal (detected at line 9)
s795588397
p02394
u823030818
1422405818
Python
Python3
py
Runtime Error
0
0
219
(W,H,x,y,r) = input().rstrip().split(' ') W = int(w) H = int(H) x = int(x) y = int(y) r = int(r) if x -r >= 0 and y -r >= 0 x <= W and y <= H: print('Yes") if x +r =< 0 and y +r =<0 x >= W and y >= H: print('No')
File "/tmp/tmp9fj025cg/tmp23frc0gz.py", line 9 print('Yes") ^ SyntaxError: unterminated string literal (detected at line 9)
s603108448
p02394
u297342993
1422409885
Python
Python3
py
Runtime Error
0
0
152
(W, H, x, y, r) = [int(i) for i in input().rstrip().split()] if x + r <= W and x - r >= 0 and y + r <= H and x -r >= 0: print('Yes') else print('No')
File "/tmp/tmpv75tagr3/tmptdqyv1kc.py", line 5 else ^ SyntaxError: expected ':'
s365693451
p02394
u879226672
1423033279
Python
Python
py
Runtime Error
0
0
327
W,H,x,y,r = raw_input() W,H,x,y,r = map(int,(W,H,x,y,r)) def isXok(W,H,x,y,r): if x-r<0 or x+r>W: return False else: return True def isYok(W,H,x,y,r): if y-r<0 or y+r>H: return False else: return True if isXok(W,H,x,y,r) and isXok(W,H,x,y,r): print True else: prin...
File "/tmp/tmp8_4onrmg/tmppfcjugg3.py", line 14 print True ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s386821848
p02394
u436720733
1432109584
Python
Python3
py
Runtime Error
0
0
141
w, h, x, y, r = map ( int, input ( ).split ( ) ) if x-r >=0 and x+r <= w and y-r >= 0 and y+r <=h: print ( "Yes" ) else: print ( "No" )
File "/tmp/tmpz3lxm6wv/tmpe4gqm_u3.py", line 1 w, h, x, y, r = map ( int, input ( ).split ( ) ) IndentationError: unexpected indent
s161447293
p02394
u436720733
1432109703
Python
Python3
py
Runtime Error
0
0
141
w, h, x, y, r = map ( int, input ( ).split ( ) ) if x-r >=0 and x+r <= w and y-r >= 0 and y+r <=h: print ( 'Yes' ) else: print ( 'No' )
File "/tmp/tmp__i5u4fr/tmpvu1qbtuw.py", line 1 w, h, x, y, r = map ( int, input ( ).split ( ) ) IndentationError: unexpected indent
s816104928
p02394
u364762182
1432109949
Python
Python3
py
Runtime Error
0
0
144
W, H, x, y, r = map(int, input().split()) if x + r <= W and x - r >= 0 and y + r <= H and y - r >= 0: printf('Yes') else: printf('No')
Traceback (most recent call last): File "/tmp/tmp8b_q1ls4/tmpwl6vua6z.py", line 1, in <module> W, H, x, y, r = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s375547667
p02394
u062590758
1432110167
Python
Python3
py
Runtime Error
0
0
94
W,H,x,y,r=map(int,input().split()) if W-x>r&&x>r&&H-y>r&&y>r: print('Yes') else: print('No')
File "/tmp/tmpur5rzghj/tmpg_wt0ecp.py", line 2 if W-x>r&&x>r&&H-y>r&&y>r: ^ SyntaxError: invalid syntax
s624410791
p02394
u062590758
1432110295
Python
Python3
py
Runtime Error
0
0
94
W,H,x,y,r=map(int,input().split()) if W-x>r&&x>r&&H-y>r&&y>r: print('Yes') else: print('No')
File "/tmp/tmpl2jfqpnp/tmp40nilju8.py", line 2 if W-x>r&&x>r&&H-y>r&&y>r: ^ SyntaxError: invalid syntax
s823844628
p02394
u747594996
1433950438
Python
Python3
py
Runtime Error
0
0
200
def main(): num = input().split() w, h, x, y, r = map(int, num) w=60 h=40 x=-20 y=-20 r=2 if abs(x+r) <= w and abs(y+r) <= h: print('Yes') else: print('No') if __name__=="__main__": main()
File "/tmp/tmpdjqwegaz/tmpu2c3518q.py", line 5 w=60 h=40 x=-20 y=-20 r=2 ^ SyntaxError: invalid syntax
s888220913
p02394
u172616925
1434961402
Python
Python
py
Runtime Error
0
0
121
W,H,x,y,r = map(int, raw_input().split()) if (r =< x =< (W - r)) & (r =< y =< (H - r)): print "Yes" else: print "No"
File "/tmp/tmpecj99bl5/tmp8erx878r.py", line 3 if (r =< x =< (W - r)) & (r =< y =< (H - r)): ^ SyntaxError: invalid syntax
s383049732
p02394
u172616925
1434961580
Python
Python
py
Runtime Error
0
0
123
W,H,x,y,r = map(int, raw_input().split()) if (r =< x =< (W - r)) and (r =< y =< (H - r)): print "Yes" else: print "No"
File "/tmp/tmpffjs0lf8/tmp7tvzu_nx.py", line 3 if (r =< x =< (W - r)) and (r =< y =< (H - r)): ^ SyntaxError: invalid syntax
s494378697
p02394
u306530296
1436152727
Python
Python3
py
Runtime Error
0
0
161
(W, H, x, y, r) = [int)(i) for i in input().split()] nums = input().split() W = int(nums[0]) H = int(nums[1]) x = int(nums[2]) y = int(nums[3]) r = int(nums[4])
File "/tmp/tmpg5vdqr8k/tmpnuj12jeu.py", line 1 (W, H, x, y, r) = [int)(i) for i in input().split()] ^ SyntaxError: closing parenthesis ')' does not match opening parenthesis '['
s992854328
p02394
u733449206
1436153407
Python
Python3
py
Runtime Error
0
0
50
(W, H, x, y, r) = [int(i) for i in input().split()
File "/tmp/tmpp0c26508/tmplht_owbv.py", line 1 (W, H, x, y, r) = [int(i) for i in input().split() ^ SyntaxError: '[' was never closed
s783231597
p02394
u733449206
1436154747
Python
Python3
py
Runtime Error
0
0
160
(W, H, x, y, r) = [int(i) for i in input().split()] nums = input().split() W = int(nums[0]) H = int(nums[1]) x = int(nums[2]) y = int(nums[3]) r = int(nums[4])
Traceback (most recent call last): File "/tmp/tmp754_ui3v/tmpo6204vda.py", line 1, in <module> (W, H, x, y, r) = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s416375000
p02394
u484576700
1436451968
Python
Python
py
Runtime Error
0
0
123
a,b,c,d,e = map(int,raw_input.split()) x = c + (e * 2) y = d + (e * 2) if a < x and b < y: print No else: print Yes
File "/tmp/tmpsqn6um0_/tmp2djsz0fa.py", line 5 print No ^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s410008457
p02394
u484576700
1436452123
Python
Python
py
Runtime Error
0
0
126
a,b,c,d,e = map(int,raw_input.split()) x = c + (e * 2) y = d + (e * 2) if a < x or b < y: print "No" else: print "Yes"
File "/tmp/tmpruyrnz8q/tmpupl3hl38.py", line 5 print "No" ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s735719226
p02394
u484576700
1436452182
Python
Python
py
Runtime Error
0
0
126
a,b,c,d,e = map(int,raw_input.split()) x = c + (e * 2) y = d + (e * 2) if a < x or b < y: print "No" else: print "Yes"
File "/tmp/tmpxtxs06zs/tmpk3m1hpbj.py", line 5 print "No" ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s706819601
p02394
u386731818
1436504184
Python
Python
py
Runtime Error
0
0
245
import sys W = int(sys.stdin.readline()) H = int(sys.stdin.readline()) x = int(sys.stdin.readline()) y = int(sys.stdin.readline()) r = int(sys.stdin.readline()) if (r < y and y < H-r) and (r < x and x < W-r): print 'yes' else: print 'no'
File "/tmp/tmpqc00p57w/tmpymuy1r_e.py", line 8 print 'yes' ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s614022639
p02394
u386731818
1436504324
Python
Python
py
Runtime Error
0
0
248
import sys W = int(sys.stdin.readline()) H = int(sys.stdin.readline()) x = int(sys.stdin.readline()) y = int(sys.stdin.readline()) r = int(sys.stdin.readline()) if r < y and y < H-r if r < x and x < W-r: print 'yes' else: print 'no'
File "/tmp/tmpv6n2w34v/tmp7k5z2j0b.py", line 7 if r < y and y < H-r ^ SyntaxError: expected ':'
s031330140
p02394
u386731818
1436504421
Python
Python
py
Runtime Error
0
0
264
import sys W = int(sys.stdin.readline()) H = int(sys.stdin.readline()) x = int(sys.stdin.readline()) y = int(sys.stdin.readline()) r = int(sys.stdin.readline()) if r < y and y < H-r if r < x and x < W-r: print 'yes' else: print 'no' print 'finish'
File "/tmp/tmph9ngudf_/tmpvyf0n1ha.py", line 7 if r < y and y < H-r ^ SyntaxError: expected ':'
s079719514
p02394
u386731818
1436504694
Python
Python
py
Runtime Error
0
0
159
import sys W = input() H = input() x = input() y = input() r = input() if r < y and y < H-r: if r < x and x < W-r: print 'yes' else: print 'no'
File "/tmp/tmp4pnrknhg/tmp7uoj3u0t.py", line 9 print 'yes' ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s905892095
p02394
u386731818
1436505102
Python
Python
py
Runtime Error
0
0
160
import sys W = input() H = input() x = input() y = input() r = input() if x-r < 0 or y < x+r > W: print 'no' else if x-r >0 and x+r < W: print 'yes'
File "/tmp/tmp40b8spru/tmptlabo21r.py", line 8 print 'no' ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s614891821
p02394
u386731818
1436505242
Python
Python
py
Runtime Error
0
0
153
import sys W = input() H = input() x = input() y = input() r = input() if x-r < 0 or y < x+r > W: print 'no' elif x-r >0 and x+r < W: print 'yes'
File "/tmp/tmph9ckueah/tmpui5wu5m_.py", line 8 print 'no' ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s839569801
p02394
u386731818
1436505476
Python
Python
py
Runtime Error
0
0
153
import sys W = input() H = input() x = input() y = input() r = input() if x-r < 0 or y < x+r > W: print 'No' elif x-r >0 and x+r < W: print 'Yes'
File "/tmp/tmpi0w_5lbn/tmpeauh32qq.py", line 8 print 'No' ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s563765269
p02394
u467309160
1437962336
Python
Python3
py
Runtime Error
0
0
127
W,H,x,y,r=map(int,raw_input().split()) if (x-r)>=0 and W>=(x+r) and (y-r)>=0 and H>=(y+r): print "Yes" else: print "No"
File "/tmp/tmp4ablrugi/tmpa69vnalw.py", line 3 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s092410737
p02394
u467309160
1437962390
Python
Python3
py
Runtime Error
0
0
202
while True: (H, W) = [int(i) for i in input().split()] if H == W == 0: break for a in range(H): for b in range(W): print('#', end='') print() print()
Traceback (most recent call last): File "/tmp/tmp19z16upc/tmp5pqb3gx6.py", line 2, in <module> (H, W) = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s841271882
p02394
u467309160
1437962442
Python
Python3
py
Runtime Error
0
0
202
while True: (H, W) = [int(i) for i in input().split()] if H == W == 0: break for a in range(H): for b in range(W): print('#', end='') print() print()
Traceback (most recent call last): File "/tmp/tmpuymjhq5r/tmpe4kkbm92.py", line 2, in <module> (H, W) = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s197878000
p02394
u306530296
1439773611
Python
Python3
py
Runtime Error
0
0
207
int main(void){ int w,h,x,y,r; scanf("%d %d %d %d %d",&w,&h,&x,&y,&r); if(w<x+r || h<y+r || 0>x-r ||0>y-r){ printf("No\n"); } else { printf("Yes\n"); } return 0; }
File "/tmp/tmph7v1mah5/tmpl0qyiel3.py", line 1 int main(void){ ^^^^ SyntaxError: invalid syntax
s337587884
p02394
u676498528
1439834054
Python
Python3
py
Runtime Error
0
0
179
(w, h, x, y, r) = input().sprit(' ') w = int(w) h = int(h) x = int(x) y = int(y) r = int(r) if 0 + r <= x <= w - r and 0 + r <= y <= h - r: print('Yes') else: print('No')
Traceback (most recent call last): File "/tmp/tmpfc8906f1/tmpyy432ng2.py", line 1, in <module> (w, h, x, y, r) = input().sprit(' ') ^^^^^^^ EOFError: EOF when reading a line
s594285859
p02394
u473077745
1439944063
Python
Python3
py
Runtime Error
0
0
297
nums = input().split() W = int( nums[0]) H = int( nums[1]) x = int( nums[2]) y = int( nums[3]) r = int( nums[4]) ???????? if (x - r) >= 0 and (x + r) <= W: ????????if (y - r) >= 0 and (y + r) <= H: ????????????????print( "Yes") ????????else: ????????????????print( "No") else: ????????print( "No")
File "/tmp/tmp4f6hmq0n/tmp0o0n81rd.py", line 7 ???????? ^ SyntaxError: invalid syntax
s311322901
p02394
u473077745
1439944207
Python
Python3
py
Runtime Error
0
0
270
nums = input().split() W = int( nums[0]) H = int( nums[1]) x = int( nums[2]) y = int( nums[3]) r = int( nums[4]) ???????? if (x - r) >= 0 and (x + r) <= W: if (y - r) >= 0 and (y + r) <= H: print("Yes") else: print("No") else: ????????print("No")
File "/tmp/tmpl925qlaq/tmpn41azeh0.py", line 7 ???????? ^ SyntaxError: invalid syntax
s074996662
p02394
u313994256
1442927034
Python
Python
py
Runtime Error
0
0
152
X= raw_input().split() if X[2] + X[4] < X[0]and X[2] - X[4] > 0 and X[3] + X[4] < X[1] and X[3] - X[4] > 0: print "Yes" else: print "No"
File "/tmp/tmpzfj4w7ce/tmp_9kslu4c.py", line 3 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s397093397
p02394
u237991875
1443541436
Python
Python
py
Runtime Error
0
0
267
numbers = [] n = raw_input() numbers = n.split(" ") for i in range(5): numbers[i] = int(numbers[i]) W = numbers[0] H = numbers[1] x = numbers[2] y = numbers[3] r = numbers[4] if x - r => 0 and y - r => 0 and x + r <= W and y + r <= H: print "Yes" else: print "No"
File "/tmp/tmptvzhxlji/tmpae6hzee2.py", line 12 if x - r => 0 and y - r => 0 and x + r <= W and y + r <= H: ^ SyntaxError: invalid syntax
s863437609
p02394
u224288634
1444129371
Python
Python
py
Runtime Error
0
0
120
W,H,x,y,r = map(int,raw_input().split()) if x-r >= 0 && y-r >= 0 && x+r <= W && y+r <= H : print'Yes' else : print'No'
File "/tmp/tmp6seqtg5x/tmp90mgfch8.py", line 2 if x-r >= 0 && y-r >= 0 && x+r <= W && y+r <= H : ^ SyntaxError: invalid syntax