n=int(input()) total=sum(map(int,input().split())) way=((100+total)//n-total//n) print(way+1 if total%n==0 else way)