n=int(input()) ns=list(map(int,input().split())) if sum(ns)%len(ns)==0: print('Yes') else: print('No')