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