N = gets.to_i A = gets.split.map(&:to_i) S = A.sum if N == 1 puts 101 else puts (S + 100) / N - (S - 1) / N end