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

문제

Finally, you are allowed again to invite your friends over for a delicious buffet! However, you still need to take social distancing measures into account. To complicate matters further, your friends are coming from various different countries. Each of these countries has slightly different social distancing rules. For example, your friends from the US are required to sit at least $2$ meters from another person, while your friends from France only need to sit $1$ meter apart from others.

You would like for all your friends to sit around one large circular table. You want to position your friends at this table in such a way that everyone complies with the social distancing requirements of their respective country. To make matters a bit easier, the distance between two people sitting at the table is calculated along the circumference. What is the minimum circumference of the table such that everyone can comply with their social distancing requirement?

입력

The input consists of:

  • One line containing an integer $n$ ($2 \le n \le 10^{5}$), the number of people sitting at the table (yourself included).
  • One line containing $n$ integers $d_1, \dots, d_n$ ($1 \le d_i \le 10^{9}$), how many meters each person needs to sit apart from others (measured along the circumference of the table).

출력

Output the minimum circumference of the table in meters such that everyone can sit at the table while respecting their social distancing measures.

예제 입력 1

2
2 3

예제 출력 1

6

예제 입력 2

3
2 2 3

예제 출력 2

8