For an integer N, we will choose a permutation P1,P2,⋯,PN of 1,2,⋯,N.
Then, for each i=1,2,⋯,N, let Mi be the remainder when i is divided by Pi.
Find the maximum possible value of M1+M2+⋯+MN.
Input is given from Standard Input in the following format:
1 | N |
Print the maximum possible value of M1+M2+⋯+MN.
1 | 2 |
1 | 1 |
When the permutation P1,P2=2,1 is chosen, M1+M2=1+0=1.
1 | 13 |
1 | 78 |
1 | 1 |
1 | 0 |
The biggest answer is that after the operation the number can remain it self. To make this satisfy the most, you just need to mode this number by this number plus 1. 1 mod 2,2, mod 3,⋯,n−1 mod n . So The left number n is mode by 1 which is always equal to 1 .
And you can easily find that the answer is
$$
1+2+3+\cdots+(n-1)+1 \= \frac{(1+(n-1))(n-1)}{2} + 1 \= \frac{n(n-1)}{2} + 1
$$
1 |
|