#ARC079C. [ARC079E] Decrease (Judge ver.)

[ARC079E] Decrease (Judge ver.)

Score : 600600 points

Problem Statement

We have a sequence of length NN consisting of non-negative integers. Consider performing the following operation on this sequence until the largest element in this sequence becomes N1N-1 or smaller. (The operation is the same as the one in Problem D.)

  • Determine the largest element in the sequence (if there is more than one, choose one). Decrease the value of this element by NN, and increase each of the other elements by 11.

It can be proved that the largest element in the sequence becomes N1N-1 or smaller after a finite number of operations.

You are given the sequence aia_i. Find the number of times we will perform the above operation.

Constraints

  • 2N502 \leq N \leq 50
  • 0ai1016+10000 \leq a_i \leq 10^{16} + 1000

Input

Input is given from Standard Input in the following format:

NN

a1a_1 a2a_2 ... aNa_N

Output

Print the number of times the operation will be performed.

4
3 3 3 3
0
3
1 0 3
1
2
2 2
2
7
27 0 0 0 0 0 0
3
10
1000 193 256 777 0 1 1192 1234567891011 48 425
1234567894848