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