Processing math: 100%
ORIGIN

AtCoder-4873 ModSum

ACM 1 mins244 words

ModSum

Problem Statement

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.

Constraints

  • N is an integer satisfying 1≤N≤109.

Input

Input is given from Standard Input in the following format:

PLAINTEXT
1
N

Output

Print the maximum possible value of M1+M2++MN.

Sample Input 1

PLAINTEXT
1
2

Sample Output 1

PLAINTEXT
1
1

When the permutation P1,P2=2,1 is chosen, M1+M2=1+0=1.

Sample Input 2

PLAINTEXT
1
13

Sample Output 2

PLAINTEXT
1
78

Sample Input 3

PLAINTEXT
1
1

Sample Output 3

PLAINTEXT
1
0

Analysis

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,,n1 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
$$

Code

C++
1
2
3
4
5
6
7
8
9
10
#include<bits/stdc++.h>

using namespace std;

int main(){
long long n;
cin >> n;
cout << n * (n - 1) / 2 << endl;
return 0;
}
Powered By Valine
v1.5.1
TOP
COMMENT
  • ABOUT
  • |
o_oyao
  The Jigsaw puzzle is incomplete with even one missing piece. And I want to be the last piece to make the puzzle complete.
Like my post?
Default QR Code
made with ❤️ by o_oyao
©o_oyao 2019-2025

30471 | 58