{"problem":{"name":"Iron Bar Cutting","description":{"content":"Takahashi, who works at DISCO, is standing before an iron bar. The bar has $N-1$ notches, which divide the bar into $N$ sections. The $i$\\-th section from the left has a length of $A_i$ millimeters. T","description_type":"Markdown"},"platform":"AtCoder","limit":{"time_limit":2000,"memory_limit":262144},"difficulty":"None","is_remote":true,"is_sync":true,"sync_url":null,"sign":"ddcc2020_qual_b"},"statements":[{"statement_type":"Markdown","content":"Takahashi, who works at DISCO, is standing before an iron bar. The bar has $N-1$ notches, which divide the bar into $N$ sections. The $i$\\-th section from the left has a length of $A_i$ millimeters.\nTakahashi 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:\n\n*   Choose one section and expand it, increasing its length by $1$ millimeter. Doing this operation once costs $1$ yen (the currency of Japan).\n*   Choose one section of length at least $2$ millimeters and shrink it, decreasing its length by $1$ millimeter. Doing this operation once costs $1$ yen.\n\nFind the minimum amount of money needed before cutting the bar into two parts with the same length.\n\n## Constraints\n\n*   $2 \\leq N \\leq 200000$\n*   $1 \\leq A_i \\leq 2020202020$\n*   All values in input are integers.\n\n## Input\n\nInput is given from Standard Input in the following format:\n\n$N$\n$A_1$ $A_2$ $A_3$ $...$ $A_N$\n\n[samples]","is_translate":false,"language":"English"}],"meta":{"iden":"ddcc2020_qual_b","tags":[],"sample_group":[["3\n2 4 3","3\n\nThe initial lengths of the sections are $[2, 4, 3]$ (in millimeters). Takahashi can cut the bar equally after doing the following operations for $3$ yen:\n\n*   Shrink the second section from the left. The lengths of the sections are now $[2, 3, 3]$.\n*   Shrink the first section from the left. The lengths of the sections are now $[1, 3, 3]$.\n*   Shrink the second section from the left. The lengths of the sections are now $[1, 2, 3]$, and we can cut the bar at the second notch from the left into two parts of length $3$ each."],["12\n100 104 102 105 103 103 101 105 104 102 104 101","0"]],"created_at":"2026-03-03 11:01:13"}}