CF95D.Horse Races

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Petya likes horse racing very much. Horses numbered from ll to rr 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. A nearly lucky number is an integer number that has at least two lucky digits the distance between which does not exceed kk . Petya learned from some of his mates from Lviv that lucky digits are digits 44 and 77 . The distance between the digits is the absolute difference between their positions in the number of a horse. For example, if k=2k=2 , then numbers 412395497412395497 , 404404 , 40704000000700040074070400000070004007 are nearly lucky and numbers 44 , 41239549974123954997 , 40070000400700040074007000040070004007 are not.

Petya prepared tt intervals [li,ri][l_{i},r_{i}] and invented number kk , 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 10000000071000000007 ( 109+710^{9}+7 ).

输入格式

The first line contains two integers tt and kk ( 1<=t,k<=10001<=t,k<=1000 ) — the number of segments and the distance between the numbers correspondingly. Next tt lines contain pairs of integers lil_{i} and rir_{i} ( 1<=l<=r<=1010001<=l<=r<=10^{1000} ). All numbers are given without the leading zeroes. Numbers in each line are separated by exactly one space character.

输出格式

Output tt lines. In each line print one integer — the answer for the corresponding segment modulo 10000000071000000007 ( 109+710^{9}+7 ).

输入输出样例

  • 输入#1

    1 2
    1 100
    

    输出#1

    4
    
  • 输入#2

    1 2
    70 77
    

    输出#2

    2
    
  • 输入#3

    2 1
    1 20
    80 100
    

    输出#3

    0
    0
    

说明/提示

In the first sample, the four nearly lucky numbers are 44, 47, 74, 77.

In the second sample, only 74 and 77 are in the given segment.

首页