题目描述
Takahashi has come to an amusement park.
The park has $N$ attractions. The _fun_ of the $i$\-th attraction is initially $a_i$.
When Takahashi rides the $i$\-th attraction, the following sequence of events happens.
- Takahashi's _satisfaction_ increases by the current fun of the $i$\-th attraction.
- Then, the fun of the $i$\-th attraction decreases by $1$.
Takahashi's satisfaction is initially $0$. He can ride the attractions at most $K$ times in total in any order.
What is the maximum possible value of satisfaction Takahashi can end up with?
Other than riding the attractions, nothing affects Takahashi's satisfaction.
输入格式
Input is given from Standard Input in the following format:
>$N$ $K$\
>$A_1$ $A_2$ $\dots$ $A_N$
#### Constraints
- $1 \leq N \leq 10^5$
- $1 \leq K \leq 2 \times 10^9$
- $1 \leq A_i \leq 2 \times 10^9$
- All values in input are integers.
输出格式
Print the maximum possible value of satisfaction that Takahashi can end up with.
样例输入 #1
3 5 100 50 102
样例输出 #1
502
样例输入 #2
2 2021 2 3
样例输出 #2
9
提示
***For Sample #1:***
Takahashi should ride the first attraction twice and the third attraction three times.
He will end up with the satisfaction of $(100+99)+(102+101+100)=502$.
There is no way to get the satisfaction of $503$ or more, so the answer is $502$.
***For Sample #2:***
Takahashi may choose to ride the attractions fewer than $K$ times in total.
来源
AtCoder [ABC216E]