news 2026/8/28 18:44:33

A. Perfect Root

作者头像

张小明

前端开发工程师

1.2k 24
文章封面图
A. Perfect Root

time limit per test

1 second

memory limit per test

256 megabytes

A positive integer x is a perfect root if there exists an integer y such that y√=x. For example, 5 is a perfect root because 25−−√=5.

For each test case, output n distinct perfect roots. Note that the values only need to be distinct within each test case; you can use the same value in different test cases.

Input

The first line of the input contains a single integer t (1≤t≤20) — the number of test cases.

The only line of each test case contains an integer n (1≤n≤20) — the number of perfect roots to output.

Output

For each test case, output n distinct perfect roots. Each perfect root x must be in the range 1≤x≤109.

Example

Input

Copy

3 1 2 5

Output

Copy

1 2 4 2 102 43 1 21

Note

For the first test case:

  • 1 is a perfect root because 1–√=1.

For the second test case:

  • 2 is a perfect root because 4–√=2.
  • 4 is a perfect root because 16−−√=4.

解题说明:水题,直接输出1-n即可。每个数肯定都符合条件。

#include<stdio.h> int main() { int t; scanf("%d", &t); while (t--) { int n; scanf("%d", &n); for (int i = 1; i <= n; i++) { printf("%d ", i); } printf("\n"); } return 0; }
版权声明: 本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!
网站建设 2026/8/27 3:30:46

MiniMax的全球化之路:中国AI公司出海的新样本

MiniMax成立4年即实现73%海外收入&#xff0c;以Talkie、海螺AI为核心产品&#xff0c;凭借“生而全球化”战略&#xff0c;从底层架构适配全球市场&#xff0c;通过文化本地化运营和高效市场推广&#xff0c;在全球200多个国家及地区拥有2.12亿用户&#xff0c;为中国AI公司出…

作者头像 李华
网站建设 2026/8/27 15:27:19

2023年NOC大赛创客智慧编程赛项Python复赛模拟题(二)

更多内容和历年真题请查看网站&#xff1a;【试卷中心 -----> NOC ----> Python ----> 复赛】 网站链接 青少年软件编程历年真题模拟题实时更新 2023年NOC大赛创客智慧编程赛项Python复赛模拟题&#xff08;二&#xff09; 一、编程题 第 1 题 NOC大赛创客智慧编程…

作者头像 李华
网站建设 2026/8/21 14:06:12

SpringBoot整合Thymeleaf

一、Thymeleaf 简介Thymeleaf 是一款现代化的服务器端 Java 模板引擎&#xff0c;主要用于 Web 开发中渲染 HTML 页面&#xff0c;能够无缝集成 Spring Boot 框架。它的核心优势是&#xff1a;支持 HTML 原生语法&#xff0c;模板文件可直接在浏览器中打开预览&#xff08;无后…

作者头像 李华
网站建设 2026/8/21 14:07:09

亲测好用!8个AI论文平台测评,研究生毕业论文必备

亲测好用&#xff01;8个AI论文平台测评&#xff0c;研究生毕业论文必备 2026年AI论文平台测评&#xff1a;从功能到体验的深度解析 随着人工智能技术在学术领域的广泛应用&#xff0c;越来越多的研究生开始依赖AI工具来提升论文写作效率。然而&#xff0c;面对市场上五花八门的…

作者头像 李华
网站建设 2026/8/21 14:06:16

循环经济在不同行业的应用前景比较

循环经济在不同行业的应用前景比较 关键词:循环经济、行业应用、应用前景、可持续发展、资源利用 摘要:本文旨在深入探讨循环经济在不同行业的应用前景并进行比较。首先介绍了循环经济的背景知识,包括其目的、适用读者、文档结构和相关术语。接着阐述了循环经济的核心概念、…

作者头像 李华