s_id stringlengths 10 10 | p_id stringlengths 6 6 | u_id stringlengths 10 10 | date stringlengths 10 10 | language stringclasses 1
value | original_language stringclasses 11
values | filename_ext stringclasses 1
value | status stringclasses 1
value | cpu_time stringlengths 1 5 | memory stringlengths 1 7 | code_size stringlengths 1 6 | code stringlengths 1 539k |
|---|---|---|---|---|---|---|---|---|---|---|---|
s332536278 | p02394 | u923630348 | 1498717872 | Python | Python3 | py | Runtime Error | 0 | 0 | 6 | return |
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') |
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") |
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") |
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") |
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") |
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") |
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") |
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') |
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" |
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" |
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" |
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" |
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" |
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") |
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") |
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' |
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") |
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" |
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") |
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") |
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") |
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" |
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") |
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") |
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") |
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") |
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") |
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") |
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") |
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") |
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") |
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" |
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") |
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") |
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) |
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) |
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) |
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") |
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") |
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") |
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') |
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") |
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" |
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") |
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' |
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") |
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") |
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") |
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") |
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() |
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() |
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()
|
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()
|
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()
|
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()
|
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() |
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() |
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() |
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() |
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() |
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() |
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() |
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() |
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") |
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")
|
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")
|
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")
|
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")
|
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")
|
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")
|
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")
|
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")
|
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")
|
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')
|
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")
|
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")
|
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")
|
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")
|
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")
|
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")
|
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”)
|
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”)
|
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”)
|
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”)
|
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”)
|
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”)
|
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”)
|
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")
|
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")
|
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")
|
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")
|
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")
|
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")
|
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")
|
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]
|
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]
|
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]
|
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]
|
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)]
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.