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