A14575 | Di-visible Confusion
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
YouKn0wWho has an integer sequence $a_1, a_2, \ldots, a_n$ . He will perform the following operation until the sequence becomes empty: select an index $i$ such that $1 \le i \le |a|$ and $a_i$ is not divisible by $(i + 1)$ , and erase this element from the sequence. Here $|a|$ is the length of sequence $a$ at the moment of operation. Note that the sequence $a$ changes and the next operation is performed on this changed sequence.
For example, if $a=[3,5,4,5]$ , then he can select $i = 2$ , because $a_2 = 5$ is not divisible by $i+1 = 3$ . After this operation the sequence is $[3,4,5]$ .
Help YouKn0wWho determine if it is possible to erase the whole sequence using the aforementioned operation.
For example, if $a=[3,5,4,5]$ , then he can select $i = 2$ , because $a_2 = 5$ is not divisible by $i+1 = 3$ . After this operation the sequence is $[3,4,5]$ .
Help YouKn0wWho determine if it is possible to erase the whole sequence using the aforementioned operation.
输入格式
The first line contains a single integer $t$ ( $1 \le t \le 10\,000$ ) — the number of test cases.
The first line of each test case contains a single integer $n$ ( $1 \le n \le 10^5$ ).
The second line of each test case contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $1 \le a_i \le 10^9$ ).
It is guaranteed that the sum of $n$ over all test cases doesn't exceed $3 \cdot 10^5$ .
The first line of each test case contains a single integer $n$ ( $1 \le n \le 10^5$ ).
The second line of each test case contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $1 \le a_i \le 10^9$ ).
It is guaranteed that the sum of $n$ over all test cases doesn't exceed $3 \cdot 10^5$ .
输出格式
For each test case, print "YES" (without quotes) if it is possible to erase the whole sequence using the aforementioned operation, print "NO" (without quotes) otherwise. You can print each letter in any register (upper or lower).
输入输出样例
输入 #1
5 3 1 2 3 1 2 2 7 7 10 384836991 191890310 576823355 782177068 404011431 818008580 954291757 160449218 155374934 840594328 8 6 69 696 69696 696969 6969696 69696969 696969696
输出 #1
YES NO YES YES NO
In the first test case, YouKn0wWho can perform the following operations (the erased elements are underlined): $[1, \underline{2}, 3] \rightarrow [\underline{1}, 3] \rightarrow [\underline{3}] \rightarrow [\,].$
In the second test case, it is impossible to erase the sequence as $i$ can only be $1$ , and when $i=1$ , $a_1 = 2$ is divisible by $i + 1 = 2$ .
In the second test case, it is impossible to erase the sequence as $i$ can only be $1$ , and when $i=1$ , $a_1 = 2$ is divisible by $i + 1 = 2$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted