ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

A. Wizard of Orz

2021-02-16 20:59:17  阅读:230  来源: 互联网

标签:digit Orz Wizard 00 second test panels panel


time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

There are nn digital panels placed in a straight line. Each panel can show any digit from 00 to 99. Initially, all panels show 00.

Every second, the digit shown by each panel increases by 11. In other words, at the end of every second, a panel that showed 99 would now show 00, a panel that showed 00 would now show 11, a panel that showed 11 would now show 22, and so on.

When a panel is paused, the digit displayed on the panel does not change in the subsequent seconds.

You must pause exactly one of these panels, at any second you wish. Then, the panels adjacent to it get paused one second later, the panels adjacent to those get paused 22 seconds later, and so on. In other words, if you pause panel xx, panel yy (for all valid yy) would be paused exactly |x−y||x−y| seconds later.

For example, suppose there are 44 panels, and the 33-rd panel is paused when the digit 99 is on it.

 

  • The panel 11 pauses 22 seconds later, so it has the digit 11;
  • the panel 22 pauses 11 second later, so it has the digit 00;
  • the panel 44 pauses 11 second later, so it has the digit 00.

 

The resulting 44-digit number is 10901090. Note that this example is not optimal for n=4n=4.

Once all panels have been paused, you write the digits displayed on them from left to right, to form an nn digit number (it can consist of leading zeros). What is the largest possible number you can get? Initially, all panels show 00.

Input

The first line of the input contains a single integer tt (1≤t≤1001≤t≤100) — the number of test cases. Each test case consists of a single line containing a single integer nn (1≤n≤2⋅1051≤n≤2⋅105).

It is guaranteed that the sum of nn over all test cases does not exceed 2⋅1052⋅105.

Output

For each test case, print the largest number you can achieve, if you pause one panel optimally.

Example

input

Copy

2
1
2

output

Copy

9
98

Note

In the first test case, it is optimal to pause the first panel when the number 99 is displayed on it.

In the second test case, it is optimal to pause the second panel when the number 88 is displayed on it.

解题说明:水题,贪心算法,第一个数肯定为9,然后依次递减循环输出。


#include<stdio.h>
#include<string.h>

int main() 
{
	int t, i;
	long int n, j;
	scanf("%d", &t);
	for (i = 0; i<t; i++) 
	{
		scanf("%ld", &n);
		printf("9");
		if (n>1) 
		{
			for (j = 1; j < n; j++)
			{
				printf("%ld", (j + 7) % 10);
			}
		}
		printf("\n");
	}
	return 0;
}

 

标签:digit,Orz,Wizard,00,second,test,panels,panel
来源: https://blog.csdn.net/jj12345jj198999/article/details/113828256

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有