N,M,S=map(int,input().split()) A=sum(map(int,input().split())) if (S-A)%M==0: print("Yes") else: print("No")