atcoder#ARC078A. [ABC067C] Splitting Pile
[ABC067C] Splitting Pile
Score : points
Problem Statement
Snuke and Raccoon have a heap of cards. The -th card from the top has the integer written on it.
They will share these cards. First, Snuke will take some number of cards from the top of the heap, then Raccoon will take all the remaining cards. Here, both Snuke and Raccoon have to take at least one card.
Let the sum of the integers on Snuke's cards and Raccoon's cards be and , respectively. They would like to minimize . Find the minimum possible value of .
Constraints
- is an integer.
Input
Input is given from Standard Input in the following format:
Output
Print the answer.
6
1 2 3 4 5 6
1
If Snuke takes four cards from the top, and Raccoon takes the remaining two cards, , , and thus . This is the minimum possible value.
2
10 -10
20
Snuke can only take one card from the top, and Raccoon can only take the remaining one card. In this case, , , and thus .