2 3 8 20
7 $7$ will divide every element of $A$ if, for example, we perform the following operation: * Choose $i = 2, j = 1$. $A$ becomes $(7, 21)$. We cannot reach the situation where $8$ or greater integer divides every element of $A$.
2 10 3 5
8 Consider performing the following five operations: * Choose $i = 2, j = 1$. $A$ becomes $(2, 6)$. * Choose $i = 2, j = 1$. $A$ becomes $(1, 7)$. * Choose $i = 2, j = 1$. $A$ becomes $(0, 8)$. * Choose $i = 2, j = 1$. $A$ becomes $(-1, 9)$. * Choose $i = 1, j = 2$. $A$ becomes $(0, 8)$. Then, $0 = 8 \times 0$ and $8 = 8 \times 1$, so $8$ divides every element of $A$. We cannot reach the situation where $9$ or greater integer divides every element of $A$.
4 5 10 1 2 22
7
8 7 1 7 5 6 8 2 6 5
5
{
"problem": {
"name": "Max GCD",
"description": {
"content": "We have a sequence of $N$ integers: $A_1, A_2, \\cdots, A_N$. You can perform the following operation between $0$ and $K$ times (inclusive): * Choose two integers $i$ and $j$ such that $i \\neq j$, e",
"description_type": "Markdown"
},
"platform": "AtCoder",
"limit": {
"time_limit": 2000,
"memory_limit": 262144
},
"difficulty": "None",
"is_remote": true,
"is_sync": true,
"sync_url": null,
"sign": "abc136_e"
},
"statements": [
{
"statement_type": "Markdown",
"content": "We have a sequence of $N$ integers: $A_1, A_2, \\cdots, A_N$.\nYou can perform the following operation between $0$ and $K$ times (inclusive):\n\n* Choose two integers $i$ and $j$ such that $i \\neq j$, e...",
"is_translate": false,
"language": "English"
}
]
}