CF1277A.Happy Birthday, Polycarp!

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Hooray! Polycarp turned nn years old! The Technocup Team sincerely congratulates Polycarp!

Polycarp celebrated all of his nn birthdays: from the 11 -th to the nn -th. At the moment, he is wondering: how many times he turned beautiful number of years?

According to Polycarp, a positive integer is beautiful if it consists of only one digit repeated one or more times. For example, the following numbers are beautiful: 11 , 7777 , 777777 , 4444 and 999999999999 . The following numbers are not beautiful: 1212 , 1111011110 , 69696969 and 987654321987654321 .

Of course, Polycarpus uses the decimal numeral system (i.e. radix is 10).

Help Polycarpus to find the number of numbers from 11 to nn (inclusive) that are beautiful.

输入格式

The first line contains an integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases in the input. Then tt test cases follow.

Each test case consists of one line, which contains a positive integer nn ( 1n1091 \le n \le 10^9 ) — how many years Polycarp has turned.

输出格式

Print tt integers — the answers to the given test cases in the order they are written in the test. Each answer is an integer: the number of beautiful years between 11 and nn , inclusive.

输入输出样例

  • 输入#1

    6
    18
    1
    9
    100500
    33
    1000000000
    

    输出#1

    10
    1
    9
    45
    12
    81
    

说明/提示

In the first test case of the example beautiful years are 11 , 22 , 33 , 44 , 55 , 66 , 77 , 88 , 99 and 1111 .

首页