Submit | All submissions | Best solutions | Back to list |
PGCD2 - Primes in GCD Table (Hard) |
This problem is a harder version of PGCD.
Let be the set of all prime numbers. For two positive integers and , define
which counts the number of prime numbers among the greatest common divisors for and .
Your task: given and , compute .
Input
The first line contains an integer , indicating the number of test cases.
Each of the next lines contains two positive integers and .
Output
For each test case, print in a single line.
Example
Input: 4
10 10
100 100
123456789 987654321
233333333333 233333333333 Output: 30
2791
33523360713808196
14968599673221238693021
Constraints
There are 6 test files.
Test #0: , .
Test #1: , .
Test #2: , .
Test #3: , .
Test #4: , .
Test #5: , .
@Speed Addicts: My solution runs in 4.87s (total time). (approx 0.81s per file)
Added by: | liouzhou_101 |
Date: | 2019-03-22 |
Time limit: | 20s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All |
Resource: | PGCD |