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