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