n = int(input()) if n == 1: exit(print(101)) a = list(map(int, input().split())) print((100 - (sum(a) % n)) // n + 1)