栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

CodeForces - 1608A Find Array【水题】

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

CodeForces - 1608A Find Array【水题】

A. Find Array
time limit per test1 second
memory limit per test256 megabytes

Given n, find any array a1,a2,…,an of integers such that all of the following conditions hold:

1≤ai≤109 for every i from 1 to n.

a1 For every i from 2 to n, ai isn’t divisible by ai−1
It can be shown that such an array always exists under the constraints of the problem.

Input
The first line contains the number of test cases t (1≤t≤100). Description of the test cases follows.

The only line of each test case contains a single integer n (1≤n≤1000).

It is guaranteed that the sum of n over all test cases does not exceed 104.

Output
For each test case print n integers a1,a2,…,an — the array you found. If there are multiple arrays satisfying all the conditions, print any of them.

Example
input
3
1
2
7
output
1
2 3
111 1111 11111 111111 1111111 11111111 111111111

Note
In the first test case, array [1] satisfies all the conditions.

In the second test case, array [2,3] satisfies all the conditions, as 2<3 and 3 is not divisible by 2.

In the third test case, array [111,1111,11111,111111,1111111,11111111,111111111] satisfies all the conditions, as it’s increasing and ai isn’t divisible by ai−1 for any i from 2 to 7.

问题链接:CodeForces - 1608A Find Array
问题简述:(略)
问题分析:(略)

AC的C语言程序如下:


#include 

int main()
{
    int t, n;
    scanf("%d", &t);
    while (t--) {
        scanf("%d", &n);
        for (int i = 2; i < n + 2; i++)
            printf("%d ", i);
        printf("n");
    }

    return 0;
}
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/876504.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号