{"raw_statement":[{"iden":"problem statement","content":"We have a sequence of $N$ terms: $a_1,a_2,\\ldots,a_N$. You can perform the following operation on this sequence any number of times (possibly zero).\n\n*   Choose a term of the sequence at that point, and let $s$ be its value. Then, for every $1\\leq i\\leq N$, replace $a_i$ with $2s-a_i$. However, this operation may not be performed in a way that produces a term with a negative value.\n\nYou want to make the greatest value among the terms of the sequence as small as possible. What will this value be after an optimal sequence of operations for this objective?"},{"iden":"constraints","content":"*   $2 \\leq N \\leq 2 \\times 10^5$\n*   $1 \\leq a_1 < a_2 < \\ldots < a_N \\leq 10^9$\n*   All values in the input are integers."},{"iden":"input","content":"The input is given from Standard Input in the following format:\n\n$N$\n$a_1$ $a_2$ $\\ldots$ $a_N$"},{"iden":"sample input 1","content":"3\n1 3 6"},{"iden":"sample output 1","content":"5\n\nIf you perform the operation with $s=3$, the sequence becomes $(5,3,0)$. The greatest value here is $5$. Under the condition that there may not be a term with a negative value, the greatest value among the terms of the sequence cannot be made smaller, so you should print $5$."},{"iden":"sample input 2","content":"5\n400 500 600 700 800"},{"iden":"sample output 2","content":"400\n\nTo obtain this result, perform the operation once with $s=400$, or perform it with $s=500$ and then with $s=300$, for instance."}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}