Counting Problem

View as PDF

Submit solution

Points: 17
Time limit: 1.0s
Memory limit: 256M

Author:
Problem type

Given two integers N and M, count the number of ordered pairs of integers (x,y) in the range [1,N) such that x+yN and xyM. Since the answer may be very large, output it modulo 109+7.

There will be T such test cases.

Constraints

1T104

2N1018

0M1018

Input Specification

The first line contains an integer T.

The new T line contains two integers, N and M.

Output Specification

Output a single integer, the number of pairs modulo 109+7.

Sample Input

Copy
1
5 6

Sample Output

Copy
8

Explanation for Sample

The pairs are (1,4), (2,3), (2,4), (3,2), (3,3), (4,1), (4,2), (4,4).


Comments

There are no comments at the moment.