CF258B.Little Elephant and Elections

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There have recently been elections in the zoo. Overall there were 77 main political parties: one of them is the Little Elephant Political Party, 66 other parties have less catchy names.

Political parties find their number in the ballot highly important. Overall there are mm possible numbers: 1,2,...,m1,2,...,m . Each of these 77 parties is going to be assigned in some way to exactly one number, at that, two distinct parties cannot receive the same number.

The Little Elephant Political Party members believe in the lucky digits 44 and 77 . They want to evaluate their chances in the elections. For that, they need to find out, how many correct assignments are there, such that the number of lucky digits in the Little Elephant Political Party ballot number is strictly larger than the total number of lucky digits in the ballot numbers of 6 other parties.

Help the Little Elephant Political Party, calculate this number. As the answer can be rather large, print the remainder from dividing it by 10000000071000000007 (109+7)(10^{9}+7) .

输入格式

A single line contains a single positive integer mm (7<=m<=109)(7<=m<=10^{9}) — the number of possible numbers in the ballot.

输出格式

In a single line print a single integer — the answer to the problem modulo 10000000071000000007 (109+7)(10^{9}+7) .

输入输出样例

  • 输入#1

    7
    

    输出#1

    0
    
  • 输入#2

    8
    

    输出#2

    1440
    
首页