import math n, X, Y = map(int, input().split()) R = list(map(int, input().split())) sum_r = sum(R) max_r = max(R) D = math.hypot(X, Y) if sum_r + max_r >= D: print("Yes") else: print("No")