Samu and Special Coprime Numbers

4.5

58 votes
Dynamic Programming, Open, Approved, Medium
Problem

Samu had come up with new type of numbers, she named them Special Coprime numbers. Special Coprime numbers follow a property : A number N is said to be Special Coprime if sum of its digits as well as the sum of the squares of its digits are coprime to each other.

Now she started counting numbers that are Special Coprime. But soon she get bored and decided to write a program that can help do it. Now she want you to help her to find count of such numbers between L and R , where both L and R are included.

Input Format :
First line contain number of test cases T. Each test case contains two space separated integers L and R, denoting the range in which you need to find the count of Special Coprime numbers.

Output Format :
For each test case you need to print the count of such numbers in range [L,R]

Constraints :
1 ≤ T ≤ 103
1 ≤ L ≤ R ≤ 1018

Sample Input
1
5 15
Sample Output
3
Time Limit: 2
Memory Limit: 256
Source Limit:
Explanation

Between 5 and 15 there are 3 Special Coprime numbers : 10 , 12 , 14

Editor Image

?