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