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