n,m,s=map(int,input().split()) A=list(map(int,input().split())) t=s-sum(A) if t%m==0: print("Yes") else: print("No")