| TheForces Round #24 (DIV3-Forces) |
|---|
| Finished |
You are given three numbers $$$n,l,$$$ and $$$r$$$.
Your task is to construct an array $$$a$$$ with $$$n$$$ integers which satisfies the following conditions:
If this is impossible, return $$$-1$$$.
NOTE: 0 and 1 are both not prime numbers.
The first line contains a single integer $$$t(1 \le t\le 1000)$$$ — the number of test cases.
The only line of each test case contains three numbers $$$n,l,r(2 \le n\le 1000,1 \le l\le r\le 2000)$$$.
For each test case, output $$$n$$$ integers $$$a_1,a_2,\ldots,a_n$$$.
If there are multiple solutions, print any of them.
If there is no solution, print a single integer $$$−1$$$.
33 1 45 1 45 10 20
1 4 2 -1 10 15 12 19 14
| Name |
|---|


