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