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