{"raw_statement":[{"iden":"problem statement","content":"You are given a sequence of length $N$: $A_1, A_2, ..., A_N$. For each integer $i$ between $1$ and $N$ (inclusive), answer the following question:\n\n*   Find the maximum value among the $N-1$ elements other than $A_i$ in the sequence."},{"iden":"constraints","content":"*   $2 \\leq N \\leq 200000$\n*   $1 \\leq A_i \\leq 200000$\n*   All values in input are integers."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$N$\n$A_1$\n$:$\n$A_N$"},{"iden":"sample input 1","content":"3\n1\n4\n3"},{"iden":"sample output 1","content":"4\n3\n4\n\n*   The maximum value among the two elements other than $A_1$, that is, $A_2 = 4$ and $A_3 = 3$, is $4$.\n*   The maximum value among the two elements other than $A_2$, that is, $A_1 = 1$ and $A_3 = 3$, is $3$.\n*   The maximum value among the two elements other than $A_3$, that is, $A_1 = 1$ and $A_2 = 4$, is $4$."},{"iden":"sample input 2","content":"2\n5\n5"},{"iden":"sample output 2","content":"5\n5"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}