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