A13467 | Omkar and Completion
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You have been blessed as a child of Omkar. To express your gratitude, please solve this problem for Omkar!
An array $a$ of length $n$ is called complete if all elements are positive and don't exceed $1000$ , and for all indices $x$ , $y$ , $z$ ( $1 \leq x,y,z \leq n$ ), $a_{x}+a_{y} \neq a_{z}$ (not necessarily distinct).
You are given one integer $n$ . Please find any complete array of length $n$ . It is guaranteed that under given constraints such array exists.
An array $a$ of length $n$ is called complete if all elements are positive and don't exceed $1000$ , and for all indices $x$ , $y$ , $z$ ( $1 \leq x,y,z \leq n$ ), $a_{x}+a_{y} \neq a_{z}$ (not necessarily distinct).
You are given one integer $n$ . Please find any complete array of length $n$ . It is guaranteed that under given constraints such array exists.
输入格式
Each test contains multiple test cases. The first line contains $t$ ( $1 \le t \le 1000$ ) — the number of test cases. Description of the test cases follows.
The only line of each test case contains one integer $n$ ( $1 \leq n \leq 1000$ ).
It is guaranteed that the sum of $n$ over all test cases does not exceed $1000$ .
The only line of each test case contains one integer $n$ ( $1 \leq n \leq 1000$ ).
It is guaranteed that the sum of $n$ over all test cases does not exceed $1000$ .
输出格式
For each test case, print a complete array on a single line. All elements have to be integers between $1$ and $1000$ and for all indices $x$ , $y$ , $z$ ( $1 \leq x,y,z \leq n$ ) (not necessarily distinct), $a_{x}+a_{y} \neq a_{z}$ must hold.
If multiple solutions exist, you may print any.
If multiple solutions exist, you may print any.
输入输出样例
输入 #1
2 5 4
输出 #1
1 5 3 77 12 384 384 44 44
It can be shown that the outputs above are valid for each test case. For example, $44+44 \neq 384$ .
Below are some examples of arrays that are NOT complete for the 1st test case:
$[1,2,3,4,5]$
Notice that $a_{1}+a_{2} = a_{3}$ .
$[1,3000,1,300,1]$
Notice that $a_{2} = 3000 > 1000$ .
Below are some examples of arrays that are NOT complete for the 1st test case:
$[1,2,3,4,5]$
Notice that $a_{1}+a_{2} = a_{3}$ .
$[1,3000,1,300,1]$
Notice that $a_{2} = 3000 > 1000$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted