CF1633A.Div. 7

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given an integer nn . You have to change the minimum number of digits in it in such a way that the resulting number does not have any leading zeroes and is divisible by 77 .

If there are multiple ways to do it, print any of them. If the given number is already divisible by 77 , leave it unchanged.

输入格式

The first line contains one integer tt ( 1t9901 \le t \le 990 ) — the number of test cases.

Then the test cases follow, each test case consists of one line containing one integer nn ( 10n99910 \le n \le 999 ).

输出格式

For each test case, print one integer without any leading zeroes — the result of your changes (i. e. the integer that is divisible by 77 and can be obtained by changing the minimum possible number of digits in nn ).

If there are multiple ways to apply changes, print any resulting number. If the given number is already divisible by 77 , just print it.

输入输出样例

  • 输入#1

    3
    42
    23
    377

    输出#1

    42
    28
    777

说明/提示

In the first test case of the example, 4242 is already divisible by 77 , so there's no need to change it.

In the second test case of the example, there are multiple answers — 2828 , 2121 or 6363 .

In the third test case of the example, other possible answers are 357357 , 371371 and 378378 . Note that you cannot print 077077 or 7777 .

首页