Codeforces 695 div2 A题

Codeforces 695 div2 A题

A. Wizard of Orz
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output

There are n digital panels placed in a straight line. Each panel can show any digit from 0 to 9. Initially, all panels show 0.

Every second, the digit shown by each panel increases by 1. In other words, at the end of every second, a panel that showed 9 would now show 0, a panel that showed 0 would now show 1, a panel that showed 1 would now show 2, 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 2 seconds later, and so on. In other words, if you pause panel x, panel y (for all valid y) would be paused exactly |x−y| seconds later.

For example, suppose there are 4 panels, and the 3-rd panel is paused when the digit 9 is on it.

The panel 1 pauses 2 seconds later, so it has the digit 1;
the panel 2 pauses 1 second later, so it has the digit 0;
the panel 4 pauses 1 second later, so it has the digit 0.
The resulting 4-digit number is 1090. Note that this example is not optimal for n=4.

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

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

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

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

Example
inputCopy
2
1
2
outputCopy
9
98

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

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

思路分析:
经过分析不难发现,当显示屏的个数 n >= 3时,当第二个显示屏为 8 时暂停,可以取得最大值

AC代码:

#include <bits/stdc++.h>

#define ll long long

using namespace std;

int a[10] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};

int main() {
    int t;
    ll n;
    while (~scanf("%d", &t)) {
        while (t--) {
            scanf("%lld", &n);
            if (n == 1)
                printf("9");
            else if (n == 2)
                printf("98");
            else if (n >= 3) {
                printf("989");
                for (int i = 0, j = 0; i < n - 3; i++, j++) {
                    printf("%d", a[j]);
                    if (j == 9)
                        j = -1;
                }
            }
            printf("\n");
        }
    }
    return 0;
}

2021-01-09
寒假特训开始了QWQ,昨晚因为好一段时间没有敲过C/C++ 代码,导致手感有点生疏,没有A题,今早起来才发现,原来是用的 long long 类型,而scanf 里用的确实 %d ,QWQQQ,真是够好笑的,今天开始找回手感,寒假冲冲冲!!!

最后还有一个Codeforces的新年小彩蛋~
Happy New Year!在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值