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
s332536278
p02394
u923630348
1498717872
Python
Python3
py
Runtime Error
0
0
6
return
File "/tmp/tmp_fzqytv3/tmpkbn3l2b2.py", line 1 return ^^^^^^ SyntaxError: 'return' outside function
s839764693
p02394
u340500592
1498973223
Python
Python3
py
Runtime Error
0
0
134
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: print('Yes') else: print('No')
File "/tmp/tmp2ezzgmek/tmpr24ha6au.py", line 2 if x + r =< W and x - r => 0 and y + r =< H and y - r => 0: ^ SyntaxError: invalid syntax
s883021862
p02394
u043639882
1499930138
Python
Python3
py
Runtime Error
0
0
104
W,H,x,y,r=map(int,input().split()) if 0 < x + r < W and 0 < y + r < H: print("Yes") else print("No")
File "/tmp/tmphrest8g9/tmp0mp4qxbh.py", line 4 else ^ SyntaxError: expected ':'
s111792624
p02394
u043639882
1499930417
Python
Python3
py
Runtime Error
30
7500
137
W,H,x,y,r=map(int,input().split()) if 0 <= x + r <= W: if 0 <= y + r <= H: print("Yes") else: Print("No") else: print("No")
Traceback (most recent call last): File "/tmp/tmpze184dcj/tmp_9nadcwv.py", line 1, in <module> W,H,x,y,r=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s188786321
p02394
u043639882
1499930664
Python
Python3
py
Runtime Error
30
7512
145
W,H,x,y,r=map(int,input().split()) if 0 < x + r <= W and r < x: if 0 < y + r <= H: print("Yes") else: Print("No") else: print("No")
Traceback (most recent call last): File "/tmp/tmphl1htlw9/tmp5g6zfsva.py", line 1, in <module> W,H,x,y,r=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s540422587
p02394
u043639882
1499930694
Python
Python3
py
Runtime Error
20
7592
135
W,H,x,y,r=map(int,input().split()) if 0 < x + r <= W: if 0 < y + r <= H: print("Yes") else: Print("No") else: print("No")
Traceback (most recent call last): File "/tmp/tmpcjrw7lol/tmpwsl7fzps.py", line 1, in <module> W,H,x,y,r=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s688137591
p02394
u043639882
1499930729
Python
Python3
py
Runtime Error
20
7536
143
W,H,x,y,r=map(int,input().split()) if 0 < x + r < W and r < x: if 0 < y + r < H: print("Yes") else: Print("No") else: print("No")
Traceback (most recent call last): File "/tmp/tmp9alzg_bo/tmpppvycm07.py", line 1, in <module> W,H,x,y,r=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s693078463
p02394
u043639882
1499930778
Python
Python3
py
Runtime Error
0
0
147
W,H,x,y,r=map(int,input().split()) if 0 < x + r < W: ????if 0 < y + r < H: ????????print("Yes") ????else: ????????Print("No") else: ????print("No")
File "/tmp/tmpi2not910/tmpi_nr9_ot.py", line 3 ????if 0 < y + r < H: ^ IndentationError: expected an indented block after 'if' statement on line 2
s213844657
p02394
u853619096
1500304426
Python
Python3
py
Runtime Error
0
0
133
W,H,x,y,r = [int() for i in input().split()] if (r > x) or (r > w-x) or (r > y) or (r > H-y): print('Yes') else: print('No')
Traceback (most recent call last): File "/tmp/tmpt1qsbfry/tmpis36grbx.py", line 1, in <module> W,H,x,y,r = [int() for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s226649794
p02394
u333596716
1500944944
Python
Python3
py
Runtime Error
0
0
233
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" if x + r > W: print "No" if y - r < 0: print "No" if y + r > H: print "No" else: print"Yes"
File "/tmp/tmpq03kxzt_/tmpfc6o6pic.py", line 9 print "No" ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s310049172
p02394
u333596716
1500945261
Python
Python3
py
Runtime Error
0
0
236
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/tmpuyzc3iow/tmp068j9q1h.py", line 9 print "No" ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s078474404
p02394
u333596716
1500945428
Python
Python3
py
Runtime Error
0
0
232
list = map(int,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/tmpjgwejuk6/tmp5mixmg5m.py", line 9 print "No" ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s885688544
p02394
u333596716
1500945810
Python
Python3
py
Runtime Error
0
0
167
W,H,x,y,r=map(int,input().split()) 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/tmpodn588p3/tmp197l9mzl.py", line 4 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s635361081
p02394
u333596716
1500945839
Python
Python3
py
Runtime Error
0
0
172
W,H,x,y,r = map(int,input().split(" ")) 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/tmpd4h0gu_0/tmpbdqsdvbx.py", line 4 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s338982664
p02394
u467070262
1501599655
Python
Python3
py
Runtime Error
0
0
242
x = input().split(" ") w = int(x[0]) h = int(x[1]) x = int(x[2]) y = int(x[3]) r = int (x[4]) if x - r < 0: print("No") elif w < x + r: print("No") elif y - r < 0: print("No") elif h < y + r: print("No") else: print("Yes")
Traceback (most recent call last): File "/tmp/tmp7n2u1cix/tmpy7w2uuts.py", line 1, in <module> x = input().split(" ") ^^^^^^^ EOFError: EOF when reading a line
s104202895
p02394
u467070262
1501599716
Python
Python3
py
Runtime Error
0
0
241
x = input().split(" ") w = int(x[0]) h = int(x[1]) x = int(x[2]) y = int(x[3]) r = int(x[4]) if x - r < 0: print("No") elif w < x + r: print("No") elif y - r < 0: print("No") elif h < y + r: print("No") else: print("Yes")
Traceback (most recent call last): File "/tmp/tmpw323k0q0/tmpxqvs4t7g.py", line 1, in <module> x = input().split(" ") ^^^^^^^ EOFError: EOF when reading a line
s287712806
p02394
u954858867
1502356627
Python
Python
py
Runtime Error
0
0
110
W, H, x, y, r = map(int, raw_input().split()) print 'Yes' if 0 =< (x + r) =< W and 0 =< (y + r) =< H else 'No'
File "/tmp/tmp4r1dnvpk/tmpyxayehgo.py", line 2 print 'Yes' if 0 =< (x + r) =< W and 0 =< (y + r) =< H else 'No' ^^^^^^^^^^ SyntaxError: expected 'else' after 'if' expression
s147438409
p02394
u744121389
1502369998
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/tmpgqza6wxz/tmpsua0yqeb.py", line 3 if (x-r)< 0 ^ SyntaxError: expected ':'
s304168076
p02394
u316697096
1503136396
Python
Python
py
Runtime Error
0
0
110
W,H,x,y,r = map(int,raw_input().split()) if W+r <= x <= W-r && H+r <= y <= H-r: print "Yes" else: print "No"
File "/tmp/tmpizryixnf/tmpttwzcl7r.py", line 2 if W+r <= x <= W-r && H+r <= y <= H-r: ^ SyntaxError: invalid syntax
s083215630
p02394
u450020188
1503504640
Python
Python3
py
Runtime Error
0
0
145
W, H, x, y, r =[int(i) for i in input().split()] If x >= r and y >= r and W >= (x+r) and H >= (y+r): print("Yes") else: print("No")
File "/tmp/tmplpbc2lx9/tmp1290wzoz.py", line 3 If x >= r and y >= r and W >= (x+r) and H >= (y+r): ^ SyntaxError: invalid syntax
s041179039
p02394
u666221014
1504511003
Python
Python3
py
Runtime Error
0
0
125
W, H, x, y, r = 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/tmpmm_7dng1/tmpoa4g4uez.py", line 1, in <module> W, H, x, y, r = input().split() ^^^^^^^ EOFError: EOF when reading a line
s073965821
p02394
u972637506
1505287178
Python
Python3
py
Runtime Error
0
0
204
def pred(W, H, x, y, r) if x - r < 0 or y - r < 0 or x + r > W or y + r > H: return False else: return True a = list(map(int, input().split())) print("Yes" if pred(*a) else "No")
File "/tmp/tmpekiiuqb5/tmppxh8pdzq.py", line 1 def pred(W, H, x, y, r) ^ SyntaxError: expected ':'
s891020294
p02394
u927166214
1505359380
Python
Python3
py
Runtime Error
0
0
149
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: print("Yes") else: print("No"
File "/tmp/tmpfr_kx7dx/tmp8pk1169f.py", line 6 print("No" ^ SyntaxError: '(' was never closed
s971958062
p02394
u011632847
1506268275
Python
Python3
py
Runtime Error
0
0
135
W,H,x,y,r = list(map(int,input().split())) if x - r >= 0 and y - r >= 0 and x + r =< W and y + r =< H: print("Yes") else: print("No")
File "/tmp/tmp7n9s1x0c/tmp0stcnp3t.py", line 2 if x - r >= 0 and y - r >= 0 and x + r =< W and y + r =< H: ^ SyntaxError: invalid syntax
s502974143
p02394
u825994660
1507528877
Python
Python3
py
Runtime Error
0
0
155
W,H,x,y,r = input().split()) if r <= x and x <= W-r: if r <= y and y <= H-r: print("Yes") else: print("No") else: print("Yes")
File "/tmp/tmpzu_rioei/tmp2ou_87qq.py", line 1 W,H,x,y,r = input().split()) ^ SyntaxError: unmatched ')'
s165389103
p02394
u825994660
1507528888
Python
Python3
py
Runtime Error
0
0
154
W,H,x,y,r = input().split() if r <= x and x <= W-r: if r <= y and y <= H-r: print("Yes") else: print("No") else: print("Yes")
Traceback (most recent call last): File "/tmp/tmpw4mlz5g0/tmp34nsxlkc.py", line 1, in <module> W,H,x,y,r = input().split() ^^^^^^^ EOFError: EOF when reading a line
s576982560
p02394
u825994660
1507528947
Python
Python3
py
Runtime Error
0
0
158
W,H,x,y,r = input().split() if r =< x and x =< (W-r): if r =< y and y =< (H-r): print("Yes") else: print("No") else: print("Yes")
File "/tmp/tmp4ouuq1tc/tmp1j8epc1c.py", line 3 if r =< x and x =< (W-r): ^ SyntaxError: invalid syntax
s205986712
p02394
u825994660
1507529107
Python
Python3
py
Runtime Error
0
0
167
W,H,x,y,r =map(int, input().split()) if r =< x and x =< (W-r): if r =< y and y =< (H-r): print("Yes") else: print("No") else: print("Yes")
File "/tmp/tmped48aqf4/tmpgutucvh2.py", line 3 if r =< x and x =< (W-r): ^ SyntaxError: invalid syntax
s725520176
p02394
u825994660
1507529287
Python
Python3
py
Runtime Error
0
0
206
z =map(int, input().split()) W = z[0] H = z[1] x = z[2] y = z[3] r = z[4] if r =< x and x =< (W-r): if r =< y and y =< (H-r): print("Yes") else: print("No") else: print("Yes")
File "/tmp/tmpw3vpc9mf/tmp_3m0ws5s.py", line 7 if r =< x and x =< (W-r): ^ SyntaxError: invalid syntax
s345740447
p02394
u825994660
1507530070
Python
Python3
py
Runtime Error
0
0
116
W,H,x,y,r = input().split() if r =< x and x =< W-r and r =< y and y =< H-r: print("Yes") else: print("No")
File "/tmp/tmpdlgp6aq0/tmpvndnheu6.py", line 3 if r =< x and x =< W-r and r =< y and y =< H-r: ^ SyntaxError: invalid syntax
s012843532
p02394
u825994660
1507530518
Python
Python3
py
Runtime Error
0
0
154
W,H,x,y,r = input().split() if r =< x and x =< W-r: if r =< y and y =< H-r: print("Yes") else: print("No") else: print("No")
File "/tmp/tmp3kaaqfxi/tmpali53yhg.py", line 3 if r =< x and x =< W-r: ^ SyntaxError: invalid syntax
s198596054
p02394
u626266743
1508851687
Python
Python3
py
Runtime Error
0
0
121
W, H, x, y, r = map(int, input(), split()) if ((x + r) <= W) and ((y + r) <= H) : print("Yes") else : print("No")
Traceback (most recent call last): File "/tmp/tmpsq9i4hms/tmp3wm6ad6w.py", line 1, in <module> W, H, x, y, r = map(int, input(), split()) ^^^^^^^ EOFError: EOF when reading a line
s346482117
p02394
u626266743
1508851738
Python
Python3
py
Runtime Error
0
0
119
W, H, x, y, r = map(int, input(), split()) if ((x + r) <= W) and ((y + r) <= H) : print "Yes" else : print "No"
File "/tmp/tmpsaurnmeh/tmp1inogcs_.py", line 3 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s972457916
p02394
u626266743
1508851773
Python
Python3
py
Runtime Error
0
0
119
W, H, x, y, r = map(int, input(), split()) if (x <= (W-r)) and (y <= (H-r)) : print ("Yes") else : print ("No")
Traceback (most recent call last): File "/tmp/tmpmckgnct_/tmp5ictspij.py", line 1, in <module> W, H, x, y, r = map(int, input(), split()) ^^^^^^^ EOFError: EOF when reading a line
s248625304
p02394
u626266743
1508852082
Python
Python3
py
Runtime Error
0
0
193
W, H, x, y, r = map(int, input(), split()) if ((x-r) >= 0) and ((x+r) <= W) : if((y-r) >= 0) and ((y+r) <= H) : print ("Yes") else : print ("No") else : print ("No")
Traceback (most recent call last): File "/tmp/tmpdyvl252w/tmpitdjol8u.py", line 1, in <module> W, H, x, y, r = map(int, input(), split()) ^^^^^^^ EOFError: EOF when reading a line
s182924849
p02394
u424457654
1508997682
Python
Python3
py
Runtime Error
0
0
134
W, H, x, y, r = map(int, input().split())) if x - r > 0 && x + r < W && y - r > 0 && y + r < H: print(Yes) else: print(No)
File "/tmp/tmpndb8l9az/tmpldtyss45.py", line 1 W, H, x, y, r = map(int, input().split())) ^ SyntaxError: unmatched ')'
s163784894
p02394
u424457654
1508997718
Python
Python3
py
Runtime Error
0
0
141
W, H, x, y, r = map(int, input().split())) if x - r > 0 && x + r < W: if y - r > 0 && y + r < H: print(Yes) else: print(No)
File "/tmp/tmpu0yc511t/tmpy_b7mete.py", line 1 W, H, x, y, r = map(int, input().split())) ^ SyntaxError: unmatched ')'
s072578409
p02394
u424457654
1508997754
Python
Python3
py
Runtime Error
0
0
143
W, H, x, y, r = map(int, input().split())) if x - r > 0 and x + r < W: if y - r > 0 and y + r < H: print(Yes) else: print(No)
File "/tmp/tmphjbxh_0v/tmpd1rtcij0.py", line 1 W, H, x, y, r = map(int, input().split())) ^ SyntaxError: unmatched ')'
s141009194
p02394
u424457654
1508997783
Python
Python3
py
Runtime Error
0
0
147
W, H, x, y, r = map(int, input().split())) if x - r > 0 and x + r < W: if y - r > 0 and y + r < H: print("Yes") else: print("No")
File "/tmp/tmp7w7g_5tq/tmp3ndmc2g9.py", line 1 W, H, x, y, r = map(int, input().split())) ^ SyntaxError: unmatched ')'
s853014204
p02394
u424457654
1508997883
Python
Python3
py
Runtime Error
0
0
123
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/tmpab6p9nqc/tmpi32fnfzv.py", line 2 if r <= x <= W - r and r <= y <= H - r IndentationError: unexpected indent
s840053290
p02394
u424457654
1508997917
Python
Python3
py
Runtime Error
0
0
115
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/tmpkdpx_2wj/tmp0_m_k59r.py", line 2 if r <= x <= W - r and r <= y <= H - r ^ SyntaxError: expected ':'
s530305556
p02394
u748921161
1509181648
Python
Python3
py
Runtime Error
0
0
215
input_str = input().split(' ') W = int(input_str[0]) H = int(input_str[1]) x = int(input_str[2]) y = int(input_str[3]) r = int(input_str[4]) print('Yes' if x-r >= 0 and x+r =< W and y-r >= 0 and y+r <= H else 'No')
File "/tmp/tmpjfymjohz/tmp90pp8kls.py", line 8 print('Yes' if x-r >= 0 and x+r =< W and y-r >= 0 and y+r <= H else 'No') ^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: expected 'else' after 'if' expression
s938215506
p02394
u043968625
1509261728
Python
Python3
py
Runtime Error
0
0
158
W=int(input()) H=int(input()) x=int(input()) y=int(input()) r=int(input()) if x-r>=0 and x-r>=0 and x+r<=W and y+r<=H: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmp6sk_tvsf/tmpyef7y_mi.py", line 1, in <module> W=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s244608678
p02394
u846136461
1509446442
Python
Python
py
Runtime Error
0
0
191
deglist = raw_input().split(" ") W = deglist[0] H = deglist[1] x = deglist[2] y = deglist[3] r = deglist[4] if x > r and x < (W - r) and r < y and y < (H - r): print "Yes" else: print "No"
File "/tmp/tmpjy3c6y2y/tmpfzo9_wvm.py", line 9 print "Yes" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s254604897
p02394
u104114903
1509514220
Python
Python
py
Runtime Error
0
0
150
S = raw_input().split(' ') for i in range(0, len(S)): S[i] = int(S[i]) if 0 < x+r & x+r < w & 0 < y+r & y+r < h: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmpk1oic_b2/tmp44qqrq1o.py", line 1, in <module> S = raw_input().split(' ') ^^^^^^^^^ NameError: name 'raw_input' is not defined
s144838612
p02394
u846136461
1509521495
Python
Python
py
Runtime Error
0
0
195
deglist = raw_input().split(" ") W = deglist[0] H = deglist[1] x = deglist[2] y = deglist[3] r = deglist[4] if x >= r and x <= (W - r) and r <= y and y <= (H - r): print 'Yes' else: print 'No'
File "/tmp/tmpcrc3ng0r/tmpxc4wb7df.py", line 9 print 'Yes' ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s950499817
p02394
u725391514
1510414294
Python
Python3
py
Runtime Error
0
0
116
w, h, x, y, r=map(int,input().split()) if x-r=>0 && r+x=<w && y-r>0 && r+y<h: print("Yes") else: print("No")
File "/tmp/tmpktwxipys/tmpf8bbf34_.py", line 2 if x-r=>0 && r+x=<w && y-r>0 && r+y<h: ^ SyntaxError: invalid syntax
s348719385
p02394
u725391514
1510414421
Python
Python3
py
Runtime Error
0
0
119
w, h, x, y, r=map(int,input().split()) if x-r=>0 and r+x=<w and y-r>0 and r+y<h: print("Yes") else: print("No")
File "/tmp/tmp3ufuq850/tmphmf5hdg6.py", line 2 if x-r=>0 and r+x=<w and y-r>0 and r+y<h: ^ SyntaxError: invalid syntax
s179256609
p02394
u409699893
1510757369
Python
Python
py
Runtime Error
0
0
118
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/tmpe51grir1/tmptal50fmi.py", line 2 if r =< x <= w - r and r =< y <= h - r: ^ SyntaxError: invalid syntax
s546066290
p02394
u409699893
1510757451
Python
Python
py
Runtime Error
0
0
119
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/tmp6kqfq550/tmpormi7oup.py", line 2 if r =< x <= w - r and r =< y <= h - r: ^ SyntaxError: invalid syntax
s685184973
p02394
u045830275
1511097322
Python
Python3
py
Runtime Error
0
0
329
# AOJ Circle in a Rctangle def main() : W = input().split()[0] H = input().split()[1] x = input().split()[2] y = input().split()[3] r = input().split()[4] if ((x-r)>0) and ((x+r)<W) and ((y-r)>0) and ((y+r)<H) : print("Yes") else : print("No") if __name__ == '__main__' : main()
Traceback (most recent call last): File "/tmp/tmpagayax9t/tmpa3g94qea.py", line 16, in <module> main() File "/tmp/tmpagayax9t/tmpa3g94qea.py", line 4, in main W = input().split()[0] ^^^^^^^ EOFError: EOF when reading a line
s222170430
p02394
u045830275
1511098136
Python
Python3
py
Runtime Error
0
0
224
def main() : W, H, x, y, r = [int(i) for i in input().split()] if ((x-r)>=0) and ((x+r)=<W) and ((y-r)>=0) and ((y+r)<=H) : print("Yes") else : print("No") if __name__ == '__main__' : main()
File "/tmp/tmpvkj2rc09/tmp833uvgdr.py", line 4 if ((x-r)>=0) and ((x+r)=<W) and ((y-r)>=0) and ((y+r)<=H) : ^ SyntaxError: invalid syntax
s471460257
p02394
u865281338
1511098531
Python
Python3
py
Runtime Error
0
0
220
def main(): W , H , x, y, r = [int(i) for i in input().split()] if (x-r>= 0, x+r <= w , y-r >=0, y+r <= H) print("YES") else print("No") if __name__ == '__main__' : main()
File "/tmp/tmpwnk_tlva/tmp56bddydx.py", line 5 if (x-r>= 0, x+r <= w , y-r >=0, y+r <= H) ^ SyntaxError: expected ':'
s972072566
p02394
u865281338
1511098565
Python
Python3
py
Runtime Error
0
0
220
def main(): W , H , x, y, r = [int(i) for i in input().split()] if (x-r>= 0, x+r <= w , y-r >=0, y+r <= H) print("Yes") else print("No") if __name__ == '__main__' : main()
File "/tmp/tmp1a8lfpc_/tmp63h_qvno.py", line 5 if (x-r>= 0, x+r <= w , y-r >=0, y+r <= H) ^ SyntaxError: expected ':'
s766664908
p02394
u865281338
1511098656
Python
Python3
py
Runtime Error
0
0
216
def main(): W, H, x, y, r = [int(i) for i in input().split()] if x-r >= 0, x+r <= w , y-r >= 0, y+r <= H : print("YES") else print("No") if __name__ == '__main__' : main()
File "/tmp/tmpd1obreaf/tmpg6epoo8k.py", line 3 if x-r >= 0, x+r <= w , y-r >= 0, y+r <= H : ^ SyntaxError: invalid syntax
s409173821
p02394
u865281338
1511098696
Python
Python3
py
Runtime Error
0
0
216
def main(): W, H, x, y, r = [int(i) for i in input().split()] if x-r >= 0, x+r <= w , y-r >= 0, y+r <= H : print("Yse") else print("No") if __name__ == '__main__' : main()
File "/tmp/tmpxve38_j7/tmpknalnohw.py", line 3 if x-r >= 0, x+r <= w , y-r >= 0, y+r <= H : ^ SyntaxError: invalid syntax
s352816685
p02394
u865281338
1511098885
Python
Python3
py
Runtime Error
0
0
213
def main(): W, H, x, y, r = [int(i) for i in input().split()] if x-r >= 0, x+r <= w , y-r >= 0, y+r <= H : print("Yes") else : print("No") if __name__ == '__main__' : main()
File "/tmp/tmp7wfb2x5k/tmpwwnp52oc.py", line 3 if x-r >= 0, x+r <= w , y-r >= 0, y+r <= H : ^ SyntaxError: invalid syntax
s131632436
p02394
u865281338
1511098932
Python
Python3
py
Runtime Error
0
0
222
def main(): W, H, x, y, r = [int(i) for i in input().split()] if x-r >= 0 and x+r <= w and y-r >= 0,and y+r <= H : print("Yes") else : print("No") if __name__ == '__main__' : main()
File "/tmp/tmpf7yb6der/tmp6tmg782n.py", line 3 if x-r >= 0 and x+r <= w and y-r >= 0,and y+r <= H : ^ SyntaxError: invalid syntax
s971849711
p02394
u865281338
1511099460
Python
Python3
py
Runtime Error
0
0
223
def main() : W, H, x, y, r = [int(i) for i in input().split()] if ((x-r)>=0) and ((x+r)<=W) and ((y-r)>=0) and ((y+r)<=H) : print("Yes") else : print("No") if __name__ == '__main__' : main()
File "/tmp/tmp0p5phnxk/tmpq83f3gl6.py", line 4 if ((x-r)>=0) and ((x+r)<=W) and ((y-r)>=0) and ((y+r)<=H) : ^ IndentationError: unindent does not match any outer indentation level
s925015540
p02394
u865281338
1511099490
Python
Python3
py
Runtime Error
0
0
223
def main() : W, H, x, y, r = [int(i) for i in input().split()] if ((x-r)>=0) and ((x+r)<=W) and ((y-r)>=0) and ((y+r)<=H) : print("Yes") else : print("No") if __name__ == '__main__' : main()
File "/tmp/tmpper3o6e4/tmpacivbj1b.py", line 4 if ((x-r)>=0) and ((x+r)<=W) and ((y-r)>=0) and ((y+r)<=H) : ^ IndentationError: unindent does not match any outer indentation level
s600037530
p02394
u045830275
1511099538
Python
Python3
py
Runtime Error
0
0
223
def main() : W, H, x, y, r = [int(i) for i in input().split()] if ((x-r)>=0) and ((x+r)<=W) and ((y-r)>=0) and ((y+r)<=H) : print("Yes") else : print("No") if __name__ == '__main__' : main()
File "/tmp/tmp3p1iy5da/tmpdmf7bn2g.py", line 4 if ((x-r)>=0) and ((x+r)<=W) and ((y-r)>=0) and ((y+r)<=H) : ^ IndentationError: unindent does not match any outer indentation level
s382749102
p02394
u865281338
1511099698
Python
Python
py
Runtime Error
0
0
221
def main() : W, H, x, y, r = [int(i) for i in input().split()] if ((x-r)>=0) and ((x+r)<=W) and ((y-r)>=0) and ((y+r)<=H) : print("Yes") else : print("No") if __name__ == '__main__' : main()
File "/tmp/tmpmr7b8g7w/tmplxsx4nja.py", line 4 if ((x-r)>=0) and ((x+r)<=W) and ((y-r)>=0) and ((y+r)<=H) : ^ IndentationError: unindent does not match any outer indentation level
s235535178
p02394
u865281338
1511099717
Python
Python
py
Runtime Error
0
0
222
def main() : W, H, x, y, r = [int(i) for i in input().split()] if ((x-r)>=0) and ((x+r)<=W) and ((y-r)>=0) and ((y+r)<=H) : print("Yes") else : print("No") if __name__ == '__main__' : main()
Traceback (most recent call last): File "/tmp/tmpfq32z4ti/tmp9d7beeyj.py", line 10, in <module> main() File "/tmp/tmpfq32z4ti/tmp9d7beeyj.py", line 2, in main W, H, x, y, r = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s261844060
p02394
u865281338
1511099727
Python
Python
py
Runtime Error
0
0
224
def main() : W, H, x, y, r = [int(i) for i in input().split()] if ((x-r)>=0) and ((x+r)<=W) and ((y-r)>=0) and ((y+r)<=H) : print("Yes") else : print("No") if __name__ == '__main__' : main()
Traceback (most recent call last): File "/tmp/tmpscy82akl/tmplg438quj.py", line 10, in <module> main() File "/tmp/tmpscy82akl/tmplg438quj.py", line 2, in main W, H, x, y, r = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s566532658
p02394
u150984829
1513110845
Python
Python3
py
Runtime Error
0
0
81
W,H,x,y,r=map(int,input().split()) print("Yes"if r<=x<=W-r && r<=y<=H-r else"No")
File "/tmp/tmpa0g66_5z/tmplh4nysj8.py", line 2 print("Yes"if r<=x<=W-r && r<=y<=H-r else"No") ^^^^^^^^^^^^^^^^^ SyntaxError: expected 'else' after 'if' expression
s865320996
p02394
u841567836
1515170578
Python
Python3
py
Runtime Error
0
0
209
if __name__ == '__main__': l = input().split() for i in range(l): l[i] = int(l[i]) W, H, x, y, r = (l[i] for i in range(5)) if r <= x <= W -r and r <= y <= H - r: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmp83s_5ykz/tmpn7pxqahd.py", line 2, in <module> l = input().split() ^^^^^^^ EOFError: EOF when reading a line
s214153009
p02394
u841567836
1515170673
Python
Python3
py
Runtime Error
0
0
221
if __name__ == '__main__': l = input().split() for i in range(l): l[i] = int(l[i]) W, H, x, y, r = (l[i] for i in range(5)) 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/tmpdsqezff7/tmpfphpcm9w.py", line 2, in <module> l = input().split() ^^^^^^^ EOFError: EOF when reading a line
s224499696
p02394
u841567836
1515170758
Python
Python3
py
Runtime Error
0
0
223
if __name__ == '__main__': l = input().split() for i in range(l): l[i] = int(l[i]) (W, H, x, y, r) = (l[i] for i in range(5)) 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/tmp3avkilg_/tmp6y9isc8e.py", line 2, in <module> l = input().split() ^^^^^^^ EOFError: EOF when reading a line
s519218413
p02394
u841567836
1515170914
Python
Python3
py
Runtime Error
0
0
249
if __name__ == '__main__': l = input().split() for i in range(l): l[i] = int(l[i]) (W, H, x, y, r) = (l[i] for i in range(5)) if x >= r and y >= r: if x <= W - r and y <= H - r: print("Yes") else: print("No") else: print("No")
Traceback (most recent call last): File "/tmp/tmpmvpj8p0x/tmpucm007pd.py", line 2, in <module> l = input().split() ^^^^^^^ EOFError: EOF when reading a line
s505185562
p02394
u841567836
1515171027
Python
Python3
py
Runtime Error
0
0
251
if __name__ == '__main__': l = input().split() for i in range(l): l[i] = int(l[i]) W, H, x, y, r = l[0], l[1], l[2], l[3], l[4] if x >= r and y >= r: if x <= W - r and y <= H - r: print("Yes") else: print("No") else: print("No")
Traceback (most recent call last): File "/tmp/tmp3jvwumbo/tmpahceroa5.py", line 2, in <module> l = input().split() ^^^^^^^ EOFError: EOF when reading a line
s728363286
p02394
u299257375
1516009842
Python
Python3
py
Runtime Error
0
0
225
WHxyr = list(map(int, input(),split())) x_max = WHxyr[0] - WHxyr[4] y_max = WHxyr[1] - WHxyr[4] if x >= r and x <= x_max: if y >= r and y <= y_max: print("Yes") else: print("No") else: print("No")
Traceback (most recent call last): File "/tmp/tmp687d8b_m/tmpe1rovtni.py", line 1, in <module> WHxyr = list(map(int, input(),split())) ^^^^^^^ EOFError: EOF when reading a line
s660037458
p02394
u640809202
1517665127
Python
Python3
py
Runtime Error
0
0
175
w, h, x, y, r = map(int, input().split()) if x >= r and < x <= (w-r): if y >= r and y <= (h-r): print("Yes") else: print("No") else: print("No")
File "/tmp/tmp1f9gl794/tmpxlt25hyw.py", line 4 if x >= r and < x <= (w-r): ^ SyntaxError: invalid syntax
s134744875
p02394
u640809202
1517665385
Python
Python
py
Runtime Error
0
0
175
w, h, x, y, r = map(int, input().split()) if x >= r and < x <= (w-r): if y >= r and y <= (h-r): print("Yes") else: print("No") else: print("No")
File "/tmp/tmp042vyv86/tmpfbc2027j.py", line 4 if x >= r and < x <= (w-r): ^ SyntaxError: invalid syntax
s892595816
p02394
u640809202
1517665814
Python
Python3
py
Runtime Error
0
0
175
w, h, x, y, r = map(int, input().split()) if x >= r and < x <= (w-r): if y >= r and y <= (h-r): print("Yes") else: print("No") else: print("No")
File "/tmp/tmplzm8pcfh/tmpairhk2d4.py", line 4 if x >= r and < x <= (w-r): ^ SyntaxError: invalid syntax
s146914128
p02394
u139687801
1517683608
Python
Python3
py
Runtime Error
0
0
136
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')
Traceback (most recent call last): File "/tmp/tmpvdx_akmx/tmpbo045uao.py", line 1, in <module> W,H,x,y,r = map(int, input().split(',')) ^^^^^^^ EOFError: EOF when reading a line
s164730752
p02394
u442426662
1518109304
Python
Python3
py
Runtime Error
0
0
110
W,H,x,y,r=map(int,input().split()) if y+r<=H and y>r and x+r<W and x>r: print("Yes") else print("No")
File "/tmp/tmp4rjl7s4b/tmpr2wzzq2p.py", line 4 else ^ SyntaxError: expected ':'
s177192582
p02394
u613627875
1518167321
Python
Python3
py
Runtime Error
0
0
110
w,h,x,y,r = [int(x) for x in input().split()] if (x+r) =< w and (y+r) =< h: print("yes") else: print("No")
File "/tmp/tmplqkt8woh/tmppnwqsynr.py", line 3 if (x+r) =< w and (y+r) =< h: ^ SyntaxError: invalid syntax
s799421402
p02394
u373340964
1519117891
Python
Python3
py
Runtime Error
0
0
125
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: print("Yes")
Traceback (most recent call last): File "/tmp/tmplge3jdr0/tmpej8ood63.py", line 1, in <module> w, h, x, y, r = map(int(input.split())) ^^^^^^^^^^^ AttributeError: 'builtin_function_or_method' object has no attribute 'split'
s940084303
p02394
u373340964
1519118126
Python
Python3
py
Runtime Error
0
0
125
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: print("Yes")
Traceback (most recent call last): File "/tmp/tmpmkswfthw/tmp72nfoqa0.py", line 1, in <module> w, h, x, y, r = map(int, input.split()) ^^^^^^^^^^^ AttributeError: 'builtin_function_or_method' object has no attribute 'split'
s931270272
p02394
u613534067
1520131530
Python
Python3
py
Runtime Error
0
0
146
W, H, x, y, r = int(input().split()) if(x < r || y < r): print("No") elif(x > (W - r) || y > (H - r)): print("No") else: print("Yes")
File "/tmp/tmpcgnzqwsw/tmpd23c3w71.py", line 2 if(x < r || y < r): ^ SyntaxError: invalid syntax
s432140630
p02394
u613534067
1520131598
Python
Python3
py
Runtime Error
0
0
146
W, H, x, y, r = int(input().split()) if(x < r or y < r): print("No") elif(x > (W - r) or y > (H - r)): print("No") else: print("Yes")
Traceback (most recent call last): File "/tmp/tmpfccs_zmm/tmp6c8t_mto.py", line 1, in <module> W, H, x, y, r = int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s101288743
p02394
u017435045
1520750234
Python
Python3
py
Runtime Error
0
0
138
w,h,x,y,r=map(int,input().split()) a=x-r ap=x+r b=y-r bp=y+r if a>0 and ap<w and b>0 and bp<h: print(“Yes”) else: print(“No”)
File "/tmp/tmpgsydd2z_/tmpssagvd39.py", line 9 print(“Yes”) ^ SyntaxError: invalid character '“' (U+201C)
s468048230
p02394
u017435045
1520750254
Python
Python3
py
Runtime Error
0
0
138
w,h,x,y,r=map(int,input().split()) a=x-r ap=x+r b=y-r bp=y+r if a>0 and ap<w and b>0 and bp<h: print(“Yes”) else: print(“No”)
File "/tmp/tmplugoyixm/tmpdutgxsw3.py", line 9 print(“Yes”) ^ SyntaxError: invalid character '“' (U+201C)
s894559794
p02394
u017435045
1520750482
Python
Python3
py
Runtime Error
0
0
140
w,h,x,y,r=map(int,input().split()) a=x-r ap=x+r b=y-r bp=y+r if a>0 and ap<w and b>0 and bp<h : print(“Yes”) else : print(“No”)
File "/tmp/tmp886j1fvb/tmp1h2n1g0_.py", line 9 print(“Yes”) ^ SyntaxError: invalid character '“' (U+201C)
s238600055
p02394
u017435045
1520750526
Python
Python3
py
Runtime Error
0
0
137
w,h,x,y,r=map(int,input().split()) a=x-r ap=x+r b=y-r bp=y+r if a<0 or ap>w or b<0 or bp>h : print(“Yes”) else : print(“No”)
File "/tmp/tmp1qjzbav_/tmpr02ajqxe.py", line 9 print(“Yes”) ^ SyntaxError: invalid character '“' (U+201C)
s372132612
p02394
u017435045
1520750541
Python
Python3
py
Runtime Error
0
0
137
w,h,x,y,r=map(int,input().split()) a=x-r ap=x+r b=y-r bp=y+r if a<0 or ap>w or b<0 or bp>h : print(“Yes”) else : print(“No”)
File "/tmp/tmp725spnkk/tmp7v7zqzso.py", line 9 print(“Yes”) ^ SyntaxError: invalid character '“' (U+201C)
s225010672
p02394
u017435045
1520750621
Python
Python3
py
Runtime Error
0
0
139
w,h,x,y,r,=map(int,input().split()) a=x-r ap=x+r b=y-r bp=y+r if a>0 and ap<w and b>0 and bp<h: print(“Yes”) else: print(“No”)
File "/tmp/tmp3wdp6i0u/tmp1rkeilru.py", line 9 print(“Yes”) ^ SyntaxError: invalid character '“' (U+201C)
s637820633
p02394
u017435045
1520750651
Python
Python3
py
Runtime Error
0
0
136
w,h,x,y,r=map(int,input().split()) a=x-r ap=x+r b=y-r bp=y+r if a>0 and ap<w and b>0 and bp<h: print(“Yes”) else: print(“No”)
File "/tmp/tmp0ba6gtrf/tmp4wqfbp55.py", line 7 print(“Yes”) ^ SyntaxError: invalid character '“' (U+201C)
s801333360
p02394
u352203480
1521009592
Python
Python3
py
Runtime Error
0
0
144
a, b = input().split() x = int(a) y = int(b) if x < y: print("a < b") elif x > y: print("a > b") elif x == y: print("a == b")
Traceback (most recent call last): File "/tmp/tmptztqu21m/tmphl8edbhs.py", line 1, in <module> a, b = input().split() ^^^^^^^ EOFError: EOF when reading a line
s887706120
p02394
u352203480
1521009642
Python
Python3
py
Runtime Error
0
0
144
a, b = input().split() x = int(a) y = int(b) if x < y: print("a < b") elif x > y: print("a > b") elif x == y: print("a == b")
Traceback (most recent call last): File "/tmp/tmp83hs0u86/tmpaw4jwqrx.py", line 1, in <module> a, b = input().split() ^^^^^^^ EOFError: EOF when reading a line
s315445636
p02394
u507758132
1521101077
Python
Python3
py
Runtime Error
0
0
212
W, H, x, y, r = map(int,input().split()) right = x + abs(r) left = x - abs(r) top = y + abs(r) bottom = y - abs(r) if right < W and left >= 0 and top < H and bottom >= 0: print("Yes") else: print("No")
File "/tmp/tmp9j9pzbjm/tmpib1bbcv1.py", line 10 else: ^ IndentationError: unindent does not match any outer indentation level
s884586098
p02394
u706023549
1522323945
Python
Python3
py
Runtime Error
0
0
243
#coding:utf-8 elements[] = input().split() w = elements[0] h = elements[1] x = elements[2] y = elements[3] r = elements[4] if x<0 OR y<0: print("No") elif x>=r AND y>=r AND x+r<=w AND y+r<=h: print("Yes") else: print("No")
File "/tmp/tmp9mit9yn8/tmpyi6imu_u.py", line 3 elements[] = input().split() ^ SyntaxError: invalid syntax
s121816938
p02394
u706023549
1522324226
Python
Python3
py
Runtime Error
0
0
249
#coding:utf-8 elements[] = input().split() w = elements[0] h = elements[1] x = elements[2] y = elements[3] r = elements[4] if x<=0 OR y<=0: print("No") elif x>=r AND y>=r: if x+r<=w AND y+r<=h: print("Yes") else: print("No")
File "/tmp/tmpqpiiw8ul/tmp2yr9tjv0.py", line 3 elements[] = input().split() ^ SyntaxError: invalid syntax
s404398506
p02394
u621084859
1522378713
Python
Python3
py
Runtime Error
0
0
132
w=int(input()) h=int(input()) x=int(input()) y=int(input()) r=int(input()) if w >=h >= x >= y >= r: print("Yes") else: print("No")
File "/tmp/tmpm6e4hxds/tmp_ygcp6hm.py", line 7 print("Yes") ^ IndentationError: expected an indented block after 'if' statement on line 6
s958641596
p02394
u621084859
1522384358
Python
Python3
py
Runtime Error
0
0
129
w=int(n[0]) h=int(n[1]) x=int(n[2]) y=int(n[3]) r=int(n[4]) if w>h and h>x and x>y and y>r: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmpyyqvhzja/tmpun0zwoaw.py", line 1, in <module> w=int(n[0]) ^ NameError: name 'n' is not defined
s011903708
p02394
u244493040
1523626514
Python
Python3
py
Runtime Error
0
0
78
w,h,x,y,r = input().split() print(['No','Yes'][r<=x & x<=w-r & r<=y & y<=h-r]
File "/tmp/tmpgyh9h22y/tmpvxt80yre.py", line 2 print(['No','Yes'][r<=x & x<=w-r & r<=y & y<=h-r] ^ SyntaxError: '(' was never closed
s392676759
p02394
u244493040
1523626570
Python
Python3
py
Runtime Error
0
0
84
w,h,x,y,r = input().split() print(['No','Yes'][r<=x and x<=w-r and r<=y and y<=h-r]
File "/tmp/tmp_dvx_6v7/tmpp1loawj9.py", line 2 print(['No','Yes'][r<=x and x<=w-r and r<=y and y<=h-r] ^ SyntaxError: '(' was never closed
s015781988
p02394
u244493040
1523626671
Python
Python3
py
Runtime Error
0
0
83
w,h,x,y,r = map(input().split()) print(['No','Yes'][r<=x & x<=w-r & r<=y & y<=h-r]
File "/tmp/tmpx7s9gtmj/tmpn5_bhhtb.py", line 2 print(['No','Yes'][r<=x & x<=w-r & r<=y & y<=h-r] ^ SyntaxError: '(' was never closed
s125298193
p02394
u244493040
1523626694
Python
Python3
py
Runtime Error
0
0
89
w,h,x,y,r = map(input().split()) print(['No','Yes'][r<=x and x<=w-r and r<=y and y<=h-r]
File "/tmp/tmposah7_n5/tmp1_ht642q.py", line 2 print(['No','Yes'][r<=x and x<=w-r and r<=y and y<=h-r] ^ SyntaxError: '(' was never closed
s568677796
p02394
u244493040
1523627769
Python
Python3
py
Runtime Error
0
0
77
w,h,x,y,r = map(input().split()) print(['No','Yes'][(r<=x<=w-r)*(r<=y<=h-r)]
File "/tmp/tmp_4w1hggp/tmpv63amyw6.py", line 2 print(['No','Yes'][(r<=x<=w-r)*(r<=y<=h-r)] ^ SyntaxError: '(' was never closed