n, m, s = map(int, input().split()) a = list(map(int, input().split())) k = sum(a) while k < s: k += m print('Yes' if k == s else 'No')