n,x,y=list(map(int,input().split())) r=list(map(int,input().split())) s=2*sum(r)-min(r) if s*s>=x*x+y*y: print("Yes") else: print("No")