n=gets.to_i x=gets.split.map(&:to_i).sort puts x.inject(:+)%n==0 && x.uniq==n ? "YES" : "NO"