시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 (추가 시간 없음) 1024 MB104827083.333%

문제

In Oddland, the leader of the country is determined by a democratic election.  The country is divided into an odd number of regions, in which each region has an odd number of voters.

There are two (an even number!) political parties in Oddland, and the winning party is the one that wins the most number of regions.  A party wins a region if it receives more votes than the other party in that region.

Under this system, it is possible that the losing party receives more votes than the winning party.  For example, if there are three regions with $11$, $3$, and $3$ people, respectively, then a party could receive $8$, $1$, and $1$ votes and lose the election.  In this case, the losing party received the majority of the votes in the total population.

Determine the largest number of votes a party can receive and still lose the election.

입력

The first line of input contains an odd integer $N$ ($3 \leq N \leq 999$), which is the number of regions in Oddland. 

The next line contains $N$ odd integers $p_i$ ($1 \leq p_i \leq 999$), which are the populations of the $N$ cities.

출력

Display the largest number of votes a party can receive and still lose the election.

예제 입력 1

3
11 3 3

예제 출력 1

13

출처

ICPC > Regionals > North America > Rocky Mountain Regional > 2021 Rocky Mountain Regional Contest E번

  • 문제를 만든 사람: Howard Cheng