n=int(input()) if n==1:print(101);exit() l=sum(map(int,input().split())) ans=0 for i in range(0,101): if (l+i)%n==0:ans+=1 print(ans)