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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s357700356 | p02394 | u572760146 | 1444658659 | Python | Python3 | py | Runtime Error | 0 | 0 | 210 | S = raw_input()
L = S.split()
def hani(w,h,x,y,r):
if x - r < 0 or y - r < 0 or x + r > w or y + r > h :
print("No")
else :
print("Yes")
# hani(5,4,2,2,1)
#
# hani(5,4,2,4,1) | Traceback (most recent call last):
File "/tmp/tmp_n9m_sax/tmpvb3euybp.py", line 1, in <module>
S = raw_input()
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s873342316 | p02394 | u572760146 | 1444658988 | Python | Python3 | py | Runtime Error | 0 | 0 | 293 | S = raw_input()
L = S.split()
a = L[0]
b = L[1]
c = L[2]
d = L[3]
e = L[4]
a = int(a)
b = int(b)
c = int(c)
d = int(d)
e = int(e)
l = [a,b,c.d.e]
def hani(w,h,x,y,r):
if x - r < 0 or y - r < 0 or x + r > w or y + r > h :
print("No")
else :
print("Yes")
| Traceback (most recent call last):
File "/tmp/tmpb7cpetze/tmpkm3qnafe.py", line 1, in <module>
S = raw_input()
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s569320587 | p02394 | u139034459 | 1445707917 | Python | Python | py | Runtime Error | 0 | 0 | 269 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
var = raw_input().split()
var = map(int, var)
if 0 < var[2] - var[4] or 0 < var[3] - var[4]:
print "No"
return None
elif var[0] < var[2] + var[4] or var[1] > var[3] + var[4]:
print "No"
return None
else:
print "Yes" | File "/tmp/tmpza2visab/tmp8yeylt99.py", line 9
print "No"
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s669289392 | p02394 | u465282900 | 1447114433 | Python | Python | py | Runtime Error | 0 | 0 | 152 | w,h,x,y,r=map(int,raw_input().split())
f=0
if x+r>w:
f=1
if y+r>h:
f=1
if r>x:
f=1
if r>y:
f=1
if f==0:
print "Yes"
else print "No" | File "/tmp/tmpbqnir53b/tmpvfnfip_s.py", line 13
print "Yes"
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s542197320 | p02394 | u433833528 | 1447208151 | Python | Python | py | Runtime Error | 0 | 0 | 313 | W,H,x,y,r=map(int,raw_input().split())
if not(-100<=x and y<=100 and 0<W<=100 and 0<H<=100 and 0<r<=100):
print("Constraits Errand")
exit()
#elif x<=0 or y<=0 or y-r<=H<=y+r or x-r<=W<=x+r or y-r<=0<=y+r or x-r<=0<=x+r:
elif W-r<=x<=W+r and H-r<=y<= H+r
print("No")
exit()
else:
print("Yes") | File "/tmp/tmp3l7ff4rw/tmp57f0z3gy.py", line 6
elif W-r<=x<=W+r and H-r<=y<= H+r
^
SyntaxError: expected ':'
| |
s558864706 | p02394 | u613805578 | 1452699927 | Python | Python | py | Runtime Error | 0 | 0 | 127 | W, H, x, y, r = map(int, raw_input().split())
if x - r < 0 or x + r > W or y - r < 0 or y + r > H:
print "No"
else:
print "Yes" | File "/tmp/tmpdu5dyw_b/tmpxhyte2bp.py", line 3
print "No"
^
IndentationError: expected an indented block after 'if' statement on line 2
| |
s526741003 | p02394 | u613805578 | 1452700045 | Python | Python | py | Runtime Error | 0 | 0 | 127 | W, H, x, y, r = map(int, raw_input().split())
if x + r < 0 or x + r > W or y + r < 0 or y + r > H:
print "No"
else:
print "Yes" | File "/tmp/tmpx5_qfdh0/tmpbkbd8hvj.py", line 3
print "No"
^
IndentationError: expected an indented block after 'if' statement on line 2
| |
s350103945 | p02394 | u613805578 | 1452700228 | Python | Python | py | Runtime Error | 0 | 0 | 122 | W, H, x, y, r = map(int, raw_input().split())
if r < x and r < y and r + y < H and r + x < W
print "Yes"
else:
print "No" | File "/tmp/tmp5i85xfx0/tmpdz7ulgy3.py", line 2
if r < x and r < y and r + y < H and r + x < W
^
SyntaxError: expected ':'
| |
s125471904 | p02394 | u613805578 | 1452700284 | Python | Python | py | Runtime Error | 0 | 0 | 126 | W, H, x, y, r = map(int, raw_input().split())
if r <= x and r <= y and r + y <= H and r + x <= W
print "Yes"
else:
print "No" | File "/tmp/tmpfeh44933/tmpqef9y_zd.py", line 2
if r <= x and r <= y and r + y <= H and r + x <= W
^
SyntaxError: expected ':'
| |
s630975567 | p02394 | u613805578 | 1452700311 | Python | Python | py | Runtime Error | 0 | 0 | 127 | W, H, x, y, r = map(int, raw_input().split())
if r <= x and r <= y and r + y <= H and r + x <= W :
print "Yes"
else:
print "No" | File "/tmp/tmpvd03rr8c/tmp07upurie.py", line 3
print "Yes"
^
IndentationError: expected an indented block after 'if' statement on line 2
| |
s318457034 | p02394 | u613805578 | 1452700365 | Python | Python | py | Runtime Error | 0 | 0 | 127 | W, H, x, y, r = map(int, raw_input().split())
if x >= r and y >= r and r + y <= H and r + x <= W :
print "Yes"
else:
print "No" | File "/tmp/tmp041y72c_/tmpzghteyvy.py", line 3
print "Yes"
^
IndentationError: expected an indented block after 'if' statement on line 2
| |
s070195424 | p02394 | u724923896 | 1452846581 | Python | Python | py | Runtime Error | 0 | 0 | 126 | W, H, x, y, r = map(int, raw_input().split))
if 0 <= x-r and x-r <= W:
if 0 <= y-r and y-r <= H:
print Yes
else:
print No | File "/tmp/tmp_fbik8tg/tmpn5la1swq.py", line 1
W, H, x, y, r = map(int, raw_input().split))
^
SyntaxError: unmatched ')'
| |
s709839015 | p02394 | u724923896 | 1452846676 | Python | Python | py | Runtime Error | 0 | 0 | 131 | W, H, x, y, r = map(int, raw_input().split))
if 0 <= x-r and x+r <= W:
if 0 <= y-r and y+r <= H:
print "Yes"
else:
print "No" | File "/tmp/tmp9wwmnpul/tmpvtcn0gx_.py", line 1
W, H, x, y, r = map(int, raw_input().split))
^
SyntaxError: unmatched ')'
| |
s245579000 | p02394 | u724923896 | 1452846713 | Python | Python | py | Runtime Error | 0 | 0 | 130 | 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 | File "/tmp/tmp8b2est7i/tmpn6gyebn9.py", line 1
W, H, x, y, r = map(int, raw_input().split))
^
SyntaxError: unmatched ')'
| |
s448398897 | p02394 | u724923896 | 1452846813 | Python | Python | py | Runtime Error | 0 | 0 | 138 | 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" | File "/tmp/tmpvofp4v04/tmpzlkc31ii.py", line 1
W, H, x, y, r = map(int, raw_input().split))
^
SyntaxError: unmatched ')'
| |
s543813627 | p02394 | u724923896 | 1452846930 | Python | Python | py | Runtime Error | 0 | 0 | 138 | 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' | File "/tmp/tmp7qoxsg6_/tmpe00tvqid.py", line 1
W, H, x, y, r = map(int, raw_input().split))
^
SyntaxError: unmatched ')'
| |
s322266079 | p02394 | u724923896 | 1452846983 | Python | Python | py | Runtime Error | 0 | 0 | 128 | 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' | File "/tmp/tmpooh_nwno/tmp_s5s_98k.py", line 1
W, H, x, y, r = map(int, raw_input().split))
^
SyntaxError: unmatched ')'
| |
s839793613 | p02394 | u724923896 | 1452847048 | Python | Python | py | Runtime Error | 0 | 0 | 137 | 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' | File "/tmp/tmpz9u2w_nw/tmpnzjopkbu.py", line 1
W, H, x, y, r = map(int, raw_input().split))
^
SyntaxError: unmatched ')'
| |
s602745136 | p02394 | u724923896 | 1452847268 | Python | Python | py | Runtime Error | 0 | 0 | 137 | 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' | File "/tmp/tmpt2cx_m19/tmps9cyxf78.py", line 1
W, H, x, y, r = map(int, raw_input().split))
^
SyntaxError: unmatched ')'
| |
s586026841 | p02394 | u724923896 | 1452847396 | Python | Python | py | Runtime Error | 0 | 0 | 125 | W, H, x, y, r = map(int, raw_input().split))
if r <= x and x+r <= W and r <= y and y+r <= H:
print 'Yes'
else:
print 'No' | File "/tmp/tmpjg3m8xq5/tmpvv5hny4c.py", line 1
W, H, x, y, r = map(int, raw_input().split))
^
SyntaxError: unmatched ')'
| |
s308740016 | p02394 | u724923896 | 1452847508 | Python | Python | py | Runtime Error | 0 | 0 | 129 | W, H, x, y, r = map(int, raw_input().split))
if 0 <= x-r and x <= W-r and 0 <= y-r and y <= H-r:
print 'Yes'
else:
print 'No' | File "/tmp/tmplwc9077r/tmpj3grif0r.py", line 1
W, H, x, y, r = map(int, raw_input().split))
^
SyntaxError: unmatched ')'
| |
s782233153 | p02394 | u724923896 | 1452847663 | Python | Python | py | Runtime Error | 0 | 0 | 137 | 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' | File "/tmp/tmpspi44vzv/tmps_bxef0s.py", line 1
W, H, x, y, r = map(int, raw_input().split))
^
SyntaxError: unmatched ')'
| |
s322097025 | p02394 | u253463900 | 1453115770 | Python | Python3 | py | Runtime Error | 0 | 0 | 175 | W, H, x, y, r = [int(x) for x in input().split()]
if (0 <= x-r <= W) and (0 <= x+r <= w):
if(0 <= y-r <= H) and (0 <= y+r <= H):
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmpshc1ntd5/tmp57u_muig.py", line 1, in <module>
W, H, x, y, r = [int(x) for x in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s881583141 | p02394 | u532962080 | 1453206192 | Python | Python | py | Runtime Error | 0 | 0 | 180 | W=int(raw_input())
H=int(raw_input())
x=int(raw_input())
y=int(raw_input())
r=int(raw_input())
if x <= W-r and x >= r:
if y <= H-r and y >= r:
print "yes"
else:
print "no" | File "/tmp/tmp9b7mmmp6/tmpex60gzra.py", line 9
print "yes"
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s842317753 | p02394 | u532962080 | 1453206264 | Python | Python | py | Runtime Error | 0 | 0 | 178 | W=int(raw_input())
H=int(raw_input())
x=int(raw_input())
y=int(raw_input())
r=int(raw_input())
if x <= W-r and x >= r and y <= H-r and y >= r:
print "yes"
else:
print "no" | File "/tmp/tmpb9xj86jn/tmpgpq6_6kt.py", line 8
print "yes"
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s810266474 | p02394 | u393769849 | 1453206774 | Python | Python | py | Runtime Error | 0 | 0 | 123 | x, y, r, W, H = map(int, input().split())
if r < x and x < W - r:
if r < y and y < H - r:
print "Yes"
else:
print "No" | File "/tmp/tmp04wvilur/tmpwrmeqro0.py", line 4
print "Yes"
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s689108536 | p02394 | u393769849 | 1453207257 | Python | Python | py | Runtime Error | 0 | 0 | 143 | W, H, x, y, r = map(int, raw_input().split())
if r <= x and x <= W - r:
if r <= y and y <= H - r:
print "Yes"
else "No"
else:
print "No" | File "/tmp/tmp8xzuk8_2/tmpda2t5f8g.py", line 5
print "Yes"
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s493198749 | p02394 | u393769849 | 1453207275 | Python | Python | py | Runtime Error | 0 | 0 | 151 | W, H, x, y, r = map(int, raw_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/tmpjwtfjph7/tmpqcgcx7rq.py", line 5
print "Yes"
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s004978298 | p02394 | u047737909 | 1453211023 | Python | Python | py | Runtime Error | 0 | 0 | 147 | n = map(int,raw_input().split())
if 0 <= m[3]-m[5] and m[3]+m[5] <= m[1] and 0 <= m[4]-m[5] and m[4]+m[5] <= m[2]:
print 'Yes'
else:
print'No' | File "/tmp/tmpiu63lobf/tmp6uufr9tq.py", line 3
print 'Yes'
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s002652880 | p02394 | u047737909 | 1453211054 | Python | Python | py | Runtime Error | 0 | 0 | 147 | m = map(int,raw_input().split())
if 0 <= m[3]-m[5] and m[3]+m[5] <= m[1] and 0 <= m[4]-m[5] and m[4]+m[5] <= m[2]:
print 'Yes'
else:
print'No' | File "/tmp/tmp6l1cmg9g/tmphh2jcdgl.py", line 3
print 'Yes'
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s047351246 | p02394 | u177295149 | 1453213939 | Python | Python | py | Runtime Error | 0 | 0 | 105 | W, H, x, y, r = map(int, raw_input().split())
if x+r <= W and y+r <= H:
print"Yes"
else
print"No" | File "/tmp/tmpy1ylvdrw/tmpxs930waq.py", line 3
print"Yes"
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s611723409 | p02394 | u974554153 | 1453256272 | Python | Python | py | Runtime Error | 0 | 0 | 150 | w,h,x,y,r = map(int,raw_input().split())
if x<r:
print 'No'
elif y<r:
print'No'
elif w-x<r:
print 'No'
elif h-y<r:
print 'No'
else :
print 'Yes' | File "/tmp/tmph11m1g_c/tmpjs50__yc.py", line 4
print 'No'
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s317345281 | p02394 | u828153094 | 1453256420 | Python | Python | py | Runtime Error | 0 | 0 | 249 | W, H, x, y, r = map(int, raw_input().split())
if 2*r <= W and 2*r <= H:
if W > 0 and H > 0 and r <= 100:
if x, y >= -100 and x, y <= 100:
if x >= r and x <= W-r and y >= r and y <= H-r:
print 'Yes'
print 'No' | File "/tmp/tmpn7he_x9d/tmp1lax3_ag.py", line 4
if x, y >= -100 and x, y <= 100:
^
SyntaxError: invalid syntax
| |
s650133381 | p02394 | u803327846 | 1453257246 | Python | Python | py | Runtime Error | 0 | 0 | 135 | W, H , x, y, r = map(int, raw_input().split())
if x + r < W and x - r < W and y +r < H and y - r < H
print "Yes"
else:
print "No" | File "/tmp/tmpcst2vnpu/tmp0z5n33gj.py", line 3
if x + r < W and x - r < W and y +r < H and y - r < H
^
SyntaxError: expected ':'
| |
s352746104 | p02394 | u828153094 | 1453390103 | Python | Python | py | Runtime Error | 0 | 0 | 120 | W, H, x, y, r = map(int, input().split())
if x-r >= 0 and y-r >= 0 and x+r <= W and y+r <= H:
print 'Yes'
print 'No' | File "/tmp/tmp8leg0f0t/tmpkpemnt8u.py", line 3
print 'Yes'
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s310491236 | p02394 | u828153094 | 1453390210 | Python | Python | py | Runtime Error | 0 | 0 | 118 | W, H, x, y, r = map(int, input.split())
if x-r >= 0 and y-r >= 0 and x+r <= W and y+r <= H:
print 'Yes'
print 'No' | File "/tmp/tmpes4xojui/tmp54z_556k.py", line 3
print 'Yes'
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s431541895 | p02394 | u828153094 | 1453390273 | Python | Python | py | Runtime Error | 0 | 0 | 124 | W, H, x, y, r = 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/tmpsb70fc50/tmpjsqkarj1.py", line 3
print 'Yes'
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s671073562 | p02394 | u529340193 | 1454993111 | Python | Python | py | Runtime Error | 0 | 0 | 98 | W,H,x,y,r = raw_input().split(" ")
if 0<(x+r)<W && 0<(y+r)<H:
print "Yes"
else:
print "No" | File "/tmp/tmpcggcsyly/tmp7xydl2wq.py", line 2
if 0<(x+r)<W && 0<(y+r)<H:
^
SyntaxError: invalid syntax
| |
s391415554 | p02394 | u529340193 | 1454993255 | Python | Python | py | Runtime Error | 0 | 0 | 119 | W,H,x,y,r = raw_input().split(" ")
if (x+r)<W and 0<(x-r) and 0<(y-r) and (y+r)<H:
print "Yes"
else:
print "No" | File "/tmp/tmpco8hzzl6/tmpw5ke1utr.py", line 3
print "Yes"
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s279352872 | p02394 | u529340193 | 1454993494 | Python | Python | py | Runtime Error | 0 | 0 | 123 | W,H,x,y,r = raw_input().split(" ")
if (x+r)<=W and 0<=(x-r) and 0<=(y-r) and (y+r)<=H:
print "Yes"
else:
print "No" | File "/tmp/tmp00bye9iw/tmph3q4bpmy.py", line 3
print "Yes"
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s602138992 | p02394 | u529340193 | 1455018738 | Python | Python | py | Runtime Error | 0 | 0 | 119 | W,H,x,y,r = raw_input().split(" ")
if (x+r)<W and 0<(x-r) and 0<(y-r) and (y+r)<H:
print "Yes"
else:
print "No" | File "/tmp/tmpug_gps7q/tmpuzzhefwb.py", line 3
print "Yes"
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s494150503 | p02394 | u605879293 | 1455019073 | Python | Python3 | py | Runtime Error | 0 | 0 | 371 | import numpy as np
data = input().split()
for n in range(len(data)):
data[n] = int(data[n])
W, H, x, y, r = data
theta = np.arange(0, 2 * np.pi + 0.01, 0.01)
k = True
for angle in theta:
rx = x + np.cos(angle)
ry = y + np.sin(angle)
if rx >= 0 and rx <= W and ry >= 0 and ry <= H:
pass
else:
k = False
break
if k is True:
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmp4wfzpj72/tmpo8t98jmi.py", line 3, in <module>
data = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s061136142 | p02394 | u463783070 | 1458576451 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | W,H,x,y,r = map(int, raw_input().split(' '))
if W <= x+r and H <= y+r:
print "Yes"
else:
print "No" | File "/tmp/tmp4tzcpky0/tmpa8fladjp.py", line 3
print "Yes"
^
IndentationError: expected an indented block after 'if' statement on line 2
| |
s999058228 | p02394 | u463783070 | 1458577162 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | 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/tmpgoiddwax/tmp_7bo74tw.py", line 2
if r <= x <= W-r and r <= y <= H-r
^
SyntaxError: expected ':'
| |
s487980745 | p02394 | u463783070 | 1458577194 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | 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/tmpv__bfnqd/tmp4ceyvd5l.py", line 3
print "Yes"
^
IndentationError: expected an indented block after 'if' statement on line 2
| |
s268710230 | p02394 | u463783070 | 1458577336 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | W,H,x,y,r = int(input())
if r <= x <= W-r and r <= y <= H-r:
print "Yes"
else:
print "No" | File "/tmp/tmpxvdke4xd/tmp8lphthyo.py", line 3
print "Yes"
^
IndentationError: expected an indented block after 'if' statement on line 2
| |
s024645306 | p02394 | u463783070 | 1458577620 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | W,H,x,y,r = int(input())
if r <= x <= W - r and r <= y <= H - r:
print "Yes"
else:
print "No" | File "/tmp/tmpupj8wpiu/tmpvig4khs0.py", line 3
print "Yes"
^
IndentationError: expected an indented block after 'if' statement on line 2
| |
s055548799 | p02394 | u463783070 | 1458577863 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | 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/tmpgvz_kfzp/tmpkhgdfbyw.py", line 3
print "Yes"
^
IndentationError: expected an indented block after 'if' statement on line 2
| |
s688886959 | p02394 | u463783070 | 1458578317 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | 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/tmp96hs4dje/tmpo6b1bbls.py", line 3
print "Yes"
^
IndentationError: expected an indented block after 'if' statement on line 2
| |
s965216415 | p02394 | u463783070 | 1458578944 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | W,H,x,y,r = map(int, raw_input().split(' '))
print "Yes" if r <= x <= W-r and r <= y <= H-r else "No" | File "/tmp/tmpo1kos9zq/tmpn703z8ap.py", line 2
print "Yes" if r <= x <= W-r and r <= y <= H-r else "No"
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s205926585 | p02394 | u463783070 | 1458578977 | Python | Python | py | Runtime Error | 0 | 0 | 114 | 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/tmp51d_1kkp/tmpu3w1qgy5.py", line 3
print "Yes"
^
IndentationError: expected an indented block after 'if' statement on line 2
| |
s172093688 | p02394 | u463783070 | 1458578996 | Python | Python | py | Runtime Error | 0 | 0 | 110 | 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/tmpgh6gthw7/tmp_bea0ofn.py", line 3
print "Yes"
^
IndentationError: expected an indented block after 'if' statement on line 2
| |
s446728186 | p02394 | u463783070 | 1458579014 | Python | Python | py | Runtime Error | 0 | 0 | 113 | 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/tmprg0fasca/tmpa1ixdmxl.py", line 3
print "Yes"
^
IndentationError: expected an indented block after 'if' statement on line 2
| |
s611626049 | p02394 | u463783070 | 1458579066 | Python | Python | py | Runtime Error | 0 | 0 | 109 | 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/tmp41bxuen9/tmp3ek2fmcj.py", line 3
print "Yes"
^
IndentationError: expected an indented block after 'if' statement on line 2
| |
s255955481 | p02394 | u463783070 | 1458579220 | Python | Python | py | Runtime Error | 0 | 0 | 107 | 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/tmpcj7b18gn/tmpfajpm9qa.py", line 1
W,H,x,y,r = map(int, raw_input().split(,))
^
SyntaxError: invalid syntax
| |
s474392141 | p02394 | u463783070 | 1458579578 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | 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/tmpm14ha3ru/tmp9c5xcs73.py", line 3
print "Yes"
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s231349981 | p02394 | u463783070 | 1458579615 | Python | Python3 | 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") | Traceback (most recent call last):
File "/tmp/tmp54794875/tmp4zkjpnaf.py", line 1, in <module>
W,H,x,y,r = map(int, raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s124829258 | p02394 | u463783070 | 1458579649 | Python | Python3 | 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') | Traceback (most recent call last):
File "/tmp/tmp7u2uzb_i/tmplo2_bkhb.py", line 1, in <module>
W,H,x,y,r = map(int, raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s444438877 | p02394 | u226888928 | 1460122578 | 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/tmpfs_m7er2/tmppx4wdfb2.py", line 2
print('Yes'if r<=x<=w-r && r<=y<=h-r else'No')
^^^^^^^^^^^^^^^^^
SyntaxError: expected 'else' after 'if' expression
| |
s800783969 | p02394 | u226888928 | 1460122686 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | w,h,x,y,r=map(int,input().split())
print(['No','Yes'][r,r<=x,y<=w-r,h-r]) | /tmp/tmpj6upuc5y/tmp1sydmcv5.py:2: SyntaxWarning: list indices must be integers or slices, not tuple; perhaps you missed a comma?
print(['No','Yes'][r,r<=x,y<=w-r,h-r])
Traceback (most recent call last):
File "/tmp/tmpj6upuc5y/tmp1sydmcv5.py", line 1, in <module>
w,h,x,y,r=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s379783734 | p02394 | u617990214 | 1461760370 | Python | Python | py | Runtime Error | 0 | 0 | 171 | n=raw_input()
k=n.split(" ")
W=int(k[0])
H=int(k[1])
x=int(k[2])
y=int(k[3])
r=int(k[4])
if 0<=x-r<=W:
if 0=<y-r<=H:
print "Yes"
else:
print "No"
else:
print "No" | File "/tmp/tmp3xmndqcb/tmpghi8v8m_.py", line 11
if 0=<y-r<=H:
^
SyntaxError: invalid syntax
| |
s606856301 | p02394 | u617990214 | 1461760731 | Python | Python | py | Runtime Error | 0 | 0 | 203 | n=raw_input()
k=n.split(" ")
W=int(k[0])
H=int(k[1])
x=int(k[2])
y=int(k[3])
r=int(k[4])
if 0<=x-r<=W:
if 0<=y-r<=H:
print "Yes"
else:
print "No"
else: | File "/tmp/tmp3whbar7u/tmp9wdiqrk6.py", line 14
print "Yes"
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s494648611 | p02394 | u617990214 | 1461761369 | Python | Python | py | Runtime Error | 0 | 0 | 204 |
n=raw_input()
k=n.split(" ")
W=int(k[0])
H=int(k[1])
x=int(k[2])
y=int(k[3])
r=int(k[4])
f=0
if x-r>=0:
if x+r<=W:
if y-r>=0:
if y+r<=H
print "Yes"
f=1
if f==0:
print "No" | File "/tmp/tmpvkorpop6/tmpt8ewk90w.py", line 15
if y+r<=H
^
SyntaxError: expected ':'
| |
s238607170 | p02394 | u617990214 | 1461761430 | Python | Python | py | Runtime Error | 0 | 0 | 203 | n=raw_input()
k=n.split(" ")
W=int(k[0])
H=int(k[1])
x=int(k[2])
y=int(k[3])
r=int(k[4])
f=0
if x-r>=0:
if x+r<=W:
if y-r>=0:
if y+r<=H
print "Yes"
f=1
if f==0:
print "No" | File "/tmp/tmpvbhaow6_/tmp2pjyrg1l.py", line 14
if y+r<=H
^
SyntaxError: expected ':'
| |
s439486753 | p02394 | u216235239 | 1461823167 | Python | Python3 | py | Runtime Error | 0 | 0 | 137 | W, H, x, y, r = (int(i) for i in input().split())
if x - r < 0 or x + r > W or y - r < 0 or y + r > H:
print "No"
else:
print "Yes" | File "/tmp/tmpgnqjtrhn/tmpsgh8h1k3.py", line 4
print "No"
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s584580607 | p02394 | u070968430 | 1464056798 | Python | Python3 | py | Runtime Error | 20 | 7664 | 236 | W, H, x, y, r = map(int, input().split())
if x == 0 or y == 0 or x < 0 or y < 0:
print(No)
elif W == x or H == y:
print("No")
elif W < x or H < y:
print("No")
elif W < x+r or H < y+r:
print("No")
else:
print("Yes") | Traceback (most recent call last):
File "/tmp/tmp4i7qnban/tmp6cseps6x.py", line 1, in <module>
W, H, x, y, r = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s224387389 | p02394 | u104931506 | 1464195516 | 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') | File "/tmp/tmp3av5rhf4/tmpy1air5jg.py", line 1
W, H, x, y, r = map(int, input()split())
^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s830906758 | p02394 | u104931506 | 1464195590 | 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') | File "/tmp/tmp6kpcxxz5/tmpajaycoyr.py", line 1
W, H, x, y, r = map(int, input()split())
^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s103330220 | p02394 | u999470575 | 1464584343 | Python | Python3 | py | Runtime Error | 0 | 0 | 171 | w ,h ,x ,y ,r = input().split(' ')
if int(x) < int(w) - int(r):
elif int(x) > int(r):
elif int(y) < int(h) - int(r):
elif int(y) > int(r):
print("Yes")
else:
print("No") | File "/tmp/tmpjt_qf5wh/tmp55k4voqe.py", line 3
elif int(x) > int(r):
^
IndentationError: expected an indented block after 'if' statement on line 2
| |
s698424974 | p02394 | u177370127 | 1465189953 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | if x - r < 0 or y - r < 0 or x + r > W or y + r > H:
print("No")
else:
print("Yes") | Traceback (most recent call last):
File "/tmp/tmpo_dgf82r/tmpeh_i4fvf.py", line 1, in <module>
if x - r < 0 or y - r < 0 or x + r > W or y + r > H:
^
NameError: name 'x' is not defined
| |
s473625093 | p02394 | u587193722 | 1469534454 | Python | Python3 | py | Runtime Error | 0 | 0 | 150 | X, Y, x, y, r =[int(i) for i in input().split()]
if (0 <= (y-r) and (y+r) <= Y) and (0 <= (x-r) and (x+r) <= X)
print("Yes")
else:
print("No") | File "/tmp/tmpg9szxu3s/tmpir83mc4n.py", line 2
if (0 <= (y-r) and (y+r) <= Y) and (0 <= (x-r) and (x+r) <= X)
^
SyntaxError: expected ':'
| |
s061268237 | p02394 | u085472528 | 1469595175 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | W, H, x, y, r = [int(i) for i in input().split]
if x-r < 0:
print("No")
elif x-r >= 0 and x + r < W:
print("Yes") | Traceback (most recent call last):
File "/tmp/tmpo1wpi2w7/tmp7irvsse0.py", line 1, in <module>
W, H, x, y, r = [int(i) for i in input().split]
^^^^^^^
EOFError: EOF when reading a line
| |
s203178911 | p02394 | u085472528 | 1469595191 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | W, H, x, y, r = [int(i) for i in input().split]
if x-r < 0:
print("No")
if x-r >= 0 and x + r < W:
print("Yes") | Traceback (most recent call last):
File "/tmp/tmpvwcedlqn/tmpp8yaz8pm.py", line 1, in <module>
W, H, x, y, r = [int(i) for i in input().split]
^^^^^^^
EOFError: EOF when reading a line
| |
s573361801 | p02394 | u085472528 | 1469595819 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | W, H, x, y, r = [int(i) for i in input().split]
if x,y < 0:
print("No")
else:
print("Yes") | File "/tmp/tmppxod05q_/tmpns4owup7.py", line 4
if x,y < 0:
^
SyntaxError: invalid syntax
| |
s754753714 | p02394 | u085472528 | 1469595952 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | W, H, x, y, r = [int(i) for i in input().split]
if x + r <= W:
print("No")
if x - r <= W:
print("No")
else:
print("Yes") | Traceback (most recent call last):
File "/tmp/tmpb9lvtw46/tmppj75_3bw.py", line 1, in <module>
W, H, x, y, r = [int(i) for i in input().split]
^^^^^^^
EOFError: EOF when reading a line
| |
s837583892 | p02394 | u085472528 | 1469596186 | Python | Python3 | py | Runtime Error | 0 | 0 | 199 | W, H, x, y, r = [int(i) for i in input().split]
if x + r <= W:
print("Yes")
if y - r >= 0:
print("Yes")
if x - r >= 0:
print("Yes")
if y + r <= H:
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmpkxcxq62m/tmp2fzl9v1t.py", line 1, in <module>
W, H, x, y, r = [int(i) for i in input().split]
^^^^^^^
EOFError: EOF when reading a line
| |
s259434261 | p02394 | u264632995 | 1469596662 | Python | Python3 | py | Runtime Error | 0 | 0 | 210 | X,H,x,y,r =[int() for i in input().split()]
if x-r < 0 or x+r > W:
print("No")
elif y-r < 0 or y+r > H:
print("No")
elif x < r:
print("No")
elif y < r:
print("No")
else:
print("Yes") | Traceback (most recent call last):
File "/tmp/tmp0p6wh9xk/tmpynrp7y6x.py", line 1, in <module>
X,H,x,y,r =[int() for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s338331782 | p02394 | u264632995 | 1469596792 | Python | Python3 | py | Runtime Error | 0 | 0 | 208 | X,H,x,y,r =[int() for i in input().split()]
if x-r < 0 or x+r > W:
print("No")
elif y-r <0 or y+r> H:
print("No")
elif x < r:
print("No")
elif y < r:
print("No")
else:
print("Yes") | Traceback (most recent call last):
File "/tmp/tmpj8xp9dho/tmpoaj5kbqo.py", line 1, in <module>
X,H,x,y,r =[int() for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s650468546 | p02394 | u085472528 | 1469597154 | Python | Python3 | py | Runtime Error | 0 | 0 | 148 | W, H, x, y, r = [int(i) for i in input().split]
if x + r <= W and y - r >= 0 and x - r >= 0 and y + r <= H:
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmp3hhpr52y/tmpi4wc4z8u.py", line 1, in <module>
W, H, x, y, r = [int(i) for i in input().split]
^^^^^^^
EOFError: EOF when reading a line
| |
s522971116 | p02394 | u671553883 | 1469597215 | Python | Python3 | py | Runtime Error | 0 | 0 | 145 | W,H,x,y,r = [int(i) for i in input().split()]
if x + r <= W and y = r >= 0 and x - r >= 0 and y + r <= H:
print("Yes")
else:
print("No") | File "/tmp/tmpjalkph7l/tmpcca_gqfi.py", line 3
if x + r <= W and y = r >= 0 and x - r >= 0 and y + r <= H:
^
SyntaxError: invalid syntax
| |
s442530791 | p02394 | u671553883 | 1469597247 | Python | Python3 | py | Runtime Error | 0 | 0 | 149 | W, H, x, y, r = [int(i) for i in input().split()]
if x + r <= W and y = r >= 0 and x - r >= 0 and y + r <= H:
print("Yes")
else:
print("No") | File "/tmp/tmpsucdn4ne/tmpoe4o55f3.py", line 3
if x + r <= W and y = r >= 0 and x - r >= 0 and y + r <= H:
^
SyntaxError: invalid syntax
| |
s073263952 | p02394 | u382316013 | 1469597375 | Python | Python3 | py | Runtime Error | 0 | 0 | 144 | W. H, x, y, = [int(i) for i in input().aplit()]
if x + r <= W and y - r >= 0 and x -r >= 0 and y + <= H:
print("Yes")
else:
print("No") | File "/tmp/tmpg5sdrgo4/tmpzfo1myj1.py", line 3
if x + r <= W and y - r >= 0 and x -r >= 0 and y + <= H:
^^
SyntaxError: invalid syntax
| |
s178037811 | p02394 | u628732336 | 1469597394 | Python | Python3 | py | Runtime Error | 0 | 0 | 147 | W, H, x, y, r = [int(i) for i in input().split()]
if x + r <= W and y - >= 0 and x - r >= 0 and y + r <= H:
print("Yes")
else:
print("No") | File "/tmp/tmp992di0sp/tmp586azski.py", line 3
if x + r <= W and y - >= 0 and x - r >= 0 and y + r <= H:
^^
SyntaxError: invalid syntax
| |
s749202278 | p02394 | u628732336 | 1469597430 | Python | Python3 | py | Runtime Error | 0 | 0 | 147 | W, H, x, y, r = [int(i) for i in input().split()]
if x + r <= W and y - >= 0 and x - r >= 0 and y + r <= H:
print("Yes")
else:
print("No") | File "/tmp/tmpddh7iqbj/tmp12u2l8zv.py", line 3
if x + r <= W and y - >= 0 and x - r >= 0 and y + r <= H:
^^
SyntaxError: invalid syntax
| |
s274452078 | p02394 | u216425054 | 1470672423 | Python | Python3 | py | Runtime Error | 0 | 0 | 148 | [W,H,x,y,r]=[int(x) for x in input().split()]
if (abs(x)=>r and abs(W-x)=>r) and (abs(y)=>r and abs(H-y)=>r):
print("Yes")
else:
print("No") | File "/tmp/tmp3g1xwpmj/tmp7kr9451k.py", line 2
if (abs(x)=>r and abs(W-x)=>r) and (abs(y)=>r and abs(H-y)=>r):
^
SyntaxError: invalid syntax
| |
s301110212 | p02394 | u216425054 | 1470672615 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | [W,H,x,y,r]=[int(x) for x in input().split()]
if (0=<x=<W) and (0=<y=<H):
print("Yes")
else:
print("No") | File "/tmp/tmpn5ouktje/tmpaeq0e_nz.py", line 2
if (0=<x=<W) and (0=<y=<H):
^
SyntaxError: invalid syntax
| |
s148401170 | p02394 | u998435601 | 1470854931 | Python | Python | py | Runtime Error | 0 | 0 | 115 | w, h, x, y, r = map(int, raw_input().split())
if x>=r and y>=r and x+r<=w an y+r<=h:
print "Yes"
else:
print "No" | File "/tmp/tmpu_z1e89x/tmp5rq7jt6p.py", line 2
if x>=r and y>=r and x+r<=w an y+r<=h:
^^
SyntaxError: invalid syntax
| |
s289397039 | p02394 | u514745787 | 1471308108 | Python | Python3 | py | Runtime Error | 0 | 0 | 148 | W, H, x, y, r = [int(i) for i input().split()]
if x < 0 or y < 0:
print("No")
elif x+y <= W and y+r <= H:
print("Yes")
else:
print("No") | File "/tmp/tmpriazpezr/tmpay0b_dij.py", line 1
W, H, x, y, r = [int(i) for i input().split()]
^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s092968298 | p02394 | u514745787 | 1471308272 | Python | Python3 | py | Runtime Error | 0 | 0 | 148 | W, H, x, y, r = [int(i) for i input().split()]
if x < 0 or y < 0:
print("No")
elif x+r <= W and y+r <= H:
print("Yes")
else:
print("No") | File "/tmp/tmpk7ik13ta/tmpkcsducr1.py", line 1
W, H, x, y, r = [int(i) for i input().split()]
^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s376127043 | p02394 | u514745787 | 1471308280 | Python | Python3 | py | Runtime Error | 0 | 0 | 148 | W, H, x, y, r = [int(i) for i input().split()]
if x < 0 or y < 0:
print("No")
elif x+r <= W and y+r <= H:
print("Yes")
else:
print("No") | File "/tmp/tmpe6cllth_/tmpuy6ldkxq.py", line 1
W, H, x, y, r = [int(i) for i input().split()]
^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s179499972 | p02394 | u514745787 | 1471308329 | Python | Python3 | py | Runtime Error | 0 | 0 | 148 | W, H, x, y, r = [int(i) for i input().split()]
if x < 0 or y < 0:
print("No")
elif x+r <= W and y+r <= H:
print("Yes")
else:
print("No") | File "/tmp/tmpmwy5bvue/tmpqia2bdpo.py", line 1
W, H, x, y, r = [int(i) for i input().split()]
^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s354767620 | p02394 | u362094064 | 1473998046 | Python | Python3 | py | Runtime Error | 0 | 0 | 241 | List = 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/tmpdokwlb97/tmpxb6bfelv.py", line 1
List = list(map(int, input()split()))
^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s560503057 | p02394 | u393305246 | 1474109564 | Python | Python | py | Runtime Error | 0 | 0 | 160 | inl=map(int, raw_input().split())
if inl[0]>=inl[2]+inl[4] and inl[2]+inl[4]>=0 and inl[1]>=inl[3]+inl[4] and inl[3]+inl[4]>=0
print "Yes"
else:
print "No" | File "/tmp/tmppnjqxhfs/tmpj0w7uox2.py", line 3
if inl[0]>=inl[2]+inl[4] and inl[2]+inl[4]>=0 and inl[1]>=inl[3]+inl[4] and inl[3]+inl[4]>=0
^
SyntaxError: expected ':'
| |
s815140448 | p02394 | u111053265 | 1474548351 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | W,H,x,y,r = list(map(int,input().split()))
if (r<=x<=W-r)&(r<=y<=H-y):
print('Yes')
else:
print('No') | File "/tmp/tmp0wtqll5e/tmpp9_fw6lu.py", line 2
if (r<=x<=W-r)&(r<=y<=H-y):
IndentationError: unexpected indent
| |
s787739838 | p02394 | u111053265 | 1474548448 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | W,H,x,y,r = list(map(int,input().split()))
if (r<=x<=W-r)&(r<=y<=H-y):
print('Yes')
else:
print('No') | File "/tmp/tmp1wqyoo6v/tmpj5uepfby.py", line 2
if (r<=x<=W-r)&(r<=y<=H-y):
IndentationError: unexpected indent
| |
s505668037 | p02394 | u111053265 | 1474548714 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | W,H,x,y,r = list(map(int,input().split())
if (r<=x<=W-r)&(r<=y<=H-y):
print('Yes')
else:
print('No') | File "/tmp/tmpef3j0iw7/tmpamhs97qo.py", line 1
W,H,x,y,r = list(map(int,input().split())
^
SyntaxError: '(' was never closed
| |
s318067218 | p02394 | u419760455 | 1475233412 | Python | Python | py | Runtime Error | 0 | 0 | 181 | W, H, x, y, r = list(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") | Traceback (most recent call last):
File "/tmp/tmpgmg44yuh/tmp26tnhlc0.py", line 1, in <module>
W, H, x, y, r = list(map(int, input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s131782043 | p02394 | u494314211 | 1475346082 | Python | Python3 | py | Runtime Error | 0 | 0 | 124 | a,b,c,d,r=map(int,input().split())
a-=r*2
b-=r*2
c-=r
d-=r
if 0<c and 0<d and 0<a and 0<b:
print("Yes")
elif:
print("No") | File "/tmp/tmpbh17kxoy/tmpsmbsw_0c.py", line 9
elif:
^
SyntaxError: invalid syntax
| |
s413756062 | p02394 | u672487238 | 1475852946 | Python | Python | py | Runtime Error | 0 | 0 | 232 | list = map(int, raw_input().split())
x0 = list[2] - list[4]
y0 = list[3] - list[4]
x1 = list[2] + list[4]
y1 = list[3] + list[4]
if x0 >= 0 and y0 >= 0 and x1 =< list[0] and y1 =< list[1]:
print "Yes"
else :
print "No"
| File "/tmp/tmp2m5di_hv/tmpg7bzkinn.py", line 7
if x0 >= 0 and y0 >= 0 and x1 =< list[0] and y1 =< list[1]:
^
SyntaxError: invalid syntax
| |
s044128551 | p02394 | u996758922 | 1476968822 | Python | Python | py | Runtime Error | 0 | 0 | 159 | l = input().split()
l = list(map(int, l))
if l[2]-l[4] >=0 and l[3]-l[4] >=0 and l[2]+l[4] <=l[0] and l[3]+l[4] <=l[1]:
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmp5u9poutk/tmpiqsirz0w.py", line 1, in <module>
l = input().split()
^^^^^^^
EOFError: EOF when reading a line
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.