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