a179. pE Rainbow Numbers
Tags :
Accepted rate : 1人/1人 ( 100% ) [非即時]
評分方式:
Tolerant

最近更新 : 2020-12-21 18:28

Content

原題連結

Froggy loves numbers and rainbows. Today, he wants to combine these two of his favorite things. He defines rainbow numbers are numbers satisfying the following constraints.

• The number is a non-negative integer.

• The decimal representation of the number can be written as a1a2 · · · an where ai ∈ {0, 1, . . . , 9} for i ∈ {1, 2, . . . , n}.

• There is no leading zeros. That is, a1 ̸= 0 if n > 1.

• Any two consecutive digits of the number must different. That is, for 1 < i ≤ n, ai−1 ̸= ai . For instances, 1213 and 384379 are rainbow numbers. Note that 2334 is not a rainbow number, because there are consecutive 3’s. Just like rainbows, two consecutive tracks are in different colors.

Given two integers L and R, please help Froggy find out how many rainbow numbers there are within the interval [L, R]

Input

The first line contains an integer T indicating the number of testcases. Each test case is one line containing two integers L and R.

Output

For each testcase, output how many rainbow numbers are in the interval [L, R]. If there are more than 1000000006, then output the answer modulo 1000000007. Technical Specification

• 1 ≤ T ≤ 20

• 0 ≤ L ≤ R < 10^100

Sample Input #1
Sample Input 1
1
5 20

Sample Input 2
2
330 339
330 340
Sample Output #1
Sample Output 1
15

Sample Output 2
0
1
測資資訊:
記憶體限制: 512 MB
公開 測資點#0 (33%): 1.0s , <1K
公開 測資點#1 (33%): 1.0s , <1M
公開 測資點#2 (34%): 1.0s , <1M
Hint :
Tags:
出處:
CPTC2020 [管理者: s710426(?0_o)//) ]


ID User Problem Subject Hit Post Date
沒有發現任何「解題報告」