N = int(input()) SN = sum(map(int,input().split())) print('Yes' if SN % N==0 else 'No')