#DDCC2020QUALB. Iron Bar Cutting

Iron Bar Cutting

Score: 200200 points

Problem Statement

Takahashi, who works at DISCO, is standing before an iron bar. The bar has N1N-1 notches, which divide the bar into NN sections. The ii-th section from the left has a length of AiA_i millimeters.

Takahashi wanted to choose a notch and cut the bar at that point into two parts with the same length. However, this may not be possible as is, so he will do the following operations some number of times before he does the cut:

  • Choose one section and expand it, increasing its length by 11 millimeter. Doing this operation once costs 11 yen (the currency of Japan).
  • Choose one section of length at least 22 millimeters and shrink it, decreasing its length by 11 millimeter. Doing this operation once costs 11 yen.

Find the minimum amount of money needed before cutting the bar into two parts with the same length.

Constraints

  • 2N2000002 \leq N \leq 200000
  • 1Ai20202020201 \leq A_i \leq 2020202020
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN

A1A_1 A2A_2 A3A_3 ...... ANA_N

Output

Print an integer representing the minimum amount of money needed before cutting the bar into two parts with the same length.

3
2 4 3
3

The initial lengths of the sections are [2,4,3][2, 4, 3] (in millimeters). Takahashi can cut the bar equally after doing the following operations for 33 yen:

  • Shrink the second section from the left. The lengths of the sections are now [2,3,3][2, 3, 3].
  • Shrink the first section from the left. The lengths of the sections are now [1,3,3][1, 3, 3].
  • Shrink the second section from the left. The lengths of the sections are now [1,2,3][1, 2, 3], and we can cut the bar at the second notch from the left into two parts of length 33 each.
12
100 104 102 105 103 103 101 105 104 102 104 101
0