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