n=int(input()) if n>1: *a,=map(int,input().split()) s=sum(a)%n print(100//n if s%n>0 else 100//n+1) else: print(101)