N = int(input()) A = list(map(int, input().split(' '))) W = sum(A) if W % N == 0: K = 100 // N + 1 else: K = 100 // N print(K)