A1359.[COCI-2007_2008-olympiad]#4 UMNOZAK
普及+/提高
通过率:0%
时间限制:1.00s
内存限制:128MB
题目描述
The digit-product of a positive integer is the product of the number's decimal digits. For example, the digit-product of 2612 is 2 · 6 · 1 · 2 = 2
4.
The self-product of a number is the product of the number and its digit-product. For example, the self-product of 2612 is 2612 · 24 = 6268
8.
Write a program that, given two positive integers A and B, calculates the number of positive integers whose self-product is between A and B, inclusive.
输入格式
The first and only line contains two integers A and B (1 ≤ A ≤ B < 10^18).
输出格式
Output should consist of a single integer, the number of positive integers whose twist is between A and B.
输入输出样例
输入#1
20 30
输出#1
2
输入#2
145 192
输出#2
4
输入#3
2224222 2224222
输出#3
1
说明/提示
In test cases worth a total of 25 points, A and B will be at most 10^8.
In test cases worth another 15, A and B will be at most 10^12.
Clarification of second example. The self-products of numbers 19, 24, 32 i 41 are in order 171, 192,
192 and 164.