n, x, y = map(int, input().split()) r = list(map(int, input().split())) r.sort() L = max(0, r[0]-2*sum(r[1:])) R = r[0]+2*sum(r[1:]) if L*L <= x*x+y*y <= R*R: print('Yes') else: print('No')