#AGC005B. [AGC005B] Minimum Sum

[AGC005B] Minimum Sum

Score : 400400 points

Problem Statement

One day, Snuke was given a permutation of length NN, a1,a2,...,aNa_1, a_2, ..., a_N, from his friend.

Find the following:

Constraints

  • 1N200,0001 \leq N \leq 200,000
  • (a1,a2,...,aN)(a_1, a_2, ..., a_N) is a permutation of (1,2,...,N)(1, 2, ..., N).

Input

The input is given from Standard Input in the following format:

NN

a1a_1 a2a_2 ...... aNa_N

Output

Print the answer.

Note that the answer may not fit into a 32-bit integer.

3
2 1 3
9
4
1 3 2 4
19
8
5 4 8 1 2 6 7 3
85