Exception Handling

AtCoder
IDabc134_c
Time2000ms
Memory256MB
Difficulty
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: * Find the maximum value among the $N-1$ elements other than $A_i$ in the sequence. ## Constraints * $2 \leq N \leq 200000$ * $1 \leq A_i \leq 200000$ * All values in input are integers. ## Input Input is given from Standard Input in the following format: $N$ $A_1$ $:$ $A_N$ [samples]
Samples
Input #1
3
1
4
3
Output #1
4
3
4

*   The maximum value among the two elements other than $A_1$, that is, $A_2 = 4$ and $A_3 = 3$, is $4$.
*   The maximum value among the two elements other than $A_2$, that is, $A_1 = 1$ and $A_3 = 3$, is $3$.
*   The maximum value among the two elements other than $A_3$, that is, $A_1 = 1$ and $A_2 = 4$, is $4$.
Input #2
2
5
5
Output #2
5
5
API Response (JSON)
{
  "problem": {
    "name": "Exception Handling",
    "description": {
      "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: *   Find the maximum value among the $N-1$ elements ",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc134_c"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "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 ...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments