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