CF1084A.The Fair Nut and Elevator

传统题 时间 2000 ms 内存 256 MiB 5 尝试 1 已通过 1 标签

The Fair Nut and Elevator

The Fair Nut lives in nn story house. aia_i people live on the ii-th floor of the house. Every person uses elevator twice a day: to get from the floor where he/she lives to the ground (first) floor and to get from the first floor to the floor where he/she lives, when he/she comes back home in the evening.

It was decided that elevator, when it is not used, will stay on the xx-th floor, but xx hasn't been chosen yet. When a person needs to get from floor aa to floor bb, elevator follows the simple algorithm:

  • Moves from the xx-th floor (initially it stays on the xx-th floor) to the aa-th and takes the passenger.
  • Moves from the aa-th floor to the bb-th floor and lets out the passenger (if aa equals bb, elevator just opens and closes the doors, but still comes to the floor from the xx-th floor).
  • Moves from the bb-th floor back to the xx-th.

The elevator never transposes more than one person and always goes back to the floor xx before transposing a next passenger. The elevator spends one unit of electricity to move between neighboring floors. So moving from the aa-th floor to the bb-th floor requires ab|a - b| units of electricity.

Your task is to help Nut to find the minimum number of electricity units, that it would be enough for one day, by choosing an optimal the xx-th floor. Don't forget than elevator initially stays on the xx-th floor.

Input

The first line contains one integer nn (1n1001 \leq n \leq 100) — the number of floors.

The second line contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n (0ai1000 \leq a_i \leq 100) — the number of people on each floor.

Output

In a single line, print the answer to the problem — the minimum number of electricity units.

Note

In the first example, the answer can be achieved by choosing the second floor as the xx-th floor. Each person from the second floor (there are two of them) would spend 44 units of electricity per day (22 to get down and 22 to get up), and one person from the third would spend 88 units of electricity per day (44 to get down and 44 to get up). 42+81=164 \cdot 2 + 8 \cdot 1 = 16.

In the second example, the answer can be achieved by choosing the first floor as the xx-th floor.

Samples

3
0 2 1
16
2
1 1
4

在线编程 IDE

建议全屏模式获得最佳体验