ModSum

AtCoder
IDabc139_d
Time2000ms
Memory256MB
Difficulty
For an integer $N$, we will choose a permutation ${P_1, P_2, ..., P_N}$ of ${1, 2, ..., N}$. Then, for each $i=1,2,...,N$, let $M_i$ be the remainder when $i$ is divided by $P_i$. Find the maximum possible value of $M_1 + M_2 + \cdots + M_N$. ## Constraints * $N$ is an integer satisfying $1 \leq N \leq 10^9$. ## Input Input is given from Standard Input in the following format: $N$ [samples]
Samples
Input #1
2
Output #1
1

When the permutation ${P_1, P_2} = {2, 1}$ is chosen, $M_1 + M_2 = 1 + 0 = 1$.
Input #2
13
Output #2
78
Input #3
1
Output #3
0
API Response (JSON)
{
  "problem": {
    "name": "ModSum",
    "description": {
      "content": "For an integer $N$, we will choose a permutation ${P_1, P_2, ..., P_N}$ of ${1, 2, ..., N}$. Then, for each $i=1,2,...,N$, let $M_i$ be the remainder when $i$ is divided by $P_i$. Find the maximum pos",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc139_d"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "For an integer $N$, we will choose a permutation ${P_1, P_2, ..., P_N}$ of ${1, 2, ..., N}$.\nThen, for each $i=1,2,...,N$, let $M_i$ be the remainder when $i$ is divided by $P_i$.\nFind the maximum pos...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments