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