2 5 3 2 3
1 2 3 4 5
4 7
Consider the first test case.
$A=(1,2,3,4,5)$ is non-decreasing and satisfies $\displaystyle \sum_{i=1}^{N-1} (A_{i+1} \bmod A_i) = (2\bmod 1) + (3\bmod 2) + (4\bmod 3) + (5\bmod 4)=3=K$, so it satisfies all conditions.
There does not exist an $A$ that satisfies all conditions and has a value of $A_N$ less than $5$, so printing $A=(1,2,3,4,5)$ will be accepted.
Other than this, printing $A=(2,3,4,5,5)$ or $A=(2,3,3,5,5)$ will also be accepted.{
"problem": {
"name": "Sum of Mod",
"description": {
"content": "You are given positive integers $N$ and $K$. Find one length-$N$ sequence of positive integers $A=(A_1,A_2,\\ldots,A_N)$ with the minimum value of $A_N$ among the ones that satisfy all of the following",
"description_type": "Markdown"
},
"platform": "AtCoder",
"limit": {
"time_limit": 2000,
"memory_limit": 262144
},
"difficulty": "None",
"is_remote": true,
"is_sync": true,
"sync_url": null,
"sign": "arc208_b"
},
"statements": [
{
"statement_type": "Markdown",
"content": "You are given positive integers $N$ and $K$.\nFind one length-$N$ sequence of positive integers $A=(A_1,A_2,\\ldots,A_N)$ with the minimum value of $A_N$ among the ones that satisfy all of the following...",
"is_translate": false,
"language": "English"
}
]
}