CF1593B.Make it Divisible by 25

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

It is given a positive integer nn . In 11 move, one can select any single digit and remove it (i.e. one selects some position in the number and removes the digit located at this position). The operation cannot be performed if only one digit remains. If the resulting number contains leading zeroes, they are automatically removed.

E.g. if one removes from the number 3292532925 the 33 -rd digit, the resulting number will be 32253225 . If one removes from the number 2009905020099050 the first digit, the resulting number will be 9905099050 (the 22 zeroes going next to the first digit are automatically removed).

What is the minimum number of steps to get a number such that it is divisible by 2525 and positive? It is guaranteed that, for each nn occurring in the input, the answer exists. It is guaranteed that the number nn has no leading zeros.

输入格式

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

Each test case consists of one line containing one integer nn ( 25n101825 \le n \le 10^{18} ). It is guaranteed that, for each nn occurring in the input, the answer exists. It is guaranteed that the number nn has no leading zeros.

输出格式

For each test case output on a separate line an integer kk ( k0k \ge 0 ) — the minimum number of steps to get a number such that it is divisible by 2525 and positive.

输入输出样例

  • 输入#1

    5
    100
    71345
    3259
    50555
    2050047

    输出#1

    0
    3
    1
    3
    2

说明/提示

In the first test case, it is already given a number divisible by 2525 .

In the second test case, we can remove the digits 11 , 33 , and 44 to get the number 7575 .

In the third test case, it's enough to remove the last digit to get the number 325325 .

In the fourth test case, we can remove the three last digits to get the number 5050 .

In the fifth test case, it's enough to remove the digits 44 and 77 .

首页