n, x, y = map(int, input().split())
r = list(map(int, input().split()))

r.sort()
s = 2*sum(r)
s -= r[0]

print("Yes") if s**2 >= x*x + y*y else print("No")