Problem1466--CF95 - D. Horse Races

1466: CF95 - D. Horse Races

[Creator : ]
Time Limit : 2.000 sec  Memory Limit : 256 MiB

Description

Petya likes horse racing very much. Horses numbered from $l$ to $r$ take part in the races. Petya wants to evaluate the probability of victory; for some reason, to do that he needs to know the amount of nearly lucky horses' numbers. Anearly luckynumber is an integer number that has at least two lucky digits the distance between which does not exceed $k$. 
Petya learned from some of his mates from Lviv that lucky digits are digits 4 and 7. The distance between the digits is the absolute difference between their positions in the number of a horse. For example, if $k=2$, then numbers 412395497,404,4070400000070004007 are nearly lucky and numbers 4,4123954997,4007000040070004007 are not.
Petya prepared $t$ intervals $[l_i,r_i]$ and invented number $k$, common for all of them. Your task is to find how many nearly happy numbers there are in each of these segments. Since the answers can be quite large, output them modulo ($10^9+7$).

Input

The first line contains two integers $t,k\ (1≤t,k≤1000)$ − the number of segments and the distance between the numbers correspondingly. 
Next $t$ lines contain pairs of integers $l_i,r_i\ (1≤l≤r≤10^{1000})$. All numbers are given without the leading zeroes. Numbers in each line are separated by exactly one space character.

Output

Output $t$ lines. In each line print one integer − the answer for the corresponding segment modulo $10^9+7$.

Sample 1 Input

1 2
1 100

Sample 1 Output

4
the four nearly lucky numbers are 44, 47, 74, 77.

Sample 2 Input

1 2
70 77

Sample 2 Output

2
only 74 and 77 are in the given segment.

Sample 3 Input

2 1
1 20
80 100

Sample 3 Output

0
0

HINT

CF95

Source/Category