N = gets.to_i A = gets.split(" ").map{|s| s.to_i} if A.sum % N != 0 ans = "No" else ans = "Yes" 0.upto(N-2) {|i| if A[i] > A[i+1] then ans = "No" break end } end puts ans