TopCoder

User's AC Ratio

NaN% (0/0)

Submission's AC Ratio

NaN% (0/0)

Tags

Description

There are N stones, which can be divided into some piles arbitrarily. Let the value of each division be equal to the product of the number of stones in all the piles modulo P. How many possible distinct values are possible for a given N and P?

Input Format

The first line contains the number of test cases T. T lines follow, one corresponding to each test case, containing 2 integers: N and P.

T <= 40

2 <= N <= 70

2 <= P <= 1e9

Output Format

Output T lines, each line containing the required answer for the corresponding test case.

Sample Input 1

2
3 1000
5 1000

Sample Output 1

3
6

Hints

In the first test case, the possible ways of division are (1,1,1), (1,2), (2,1) and (3) which have values 1, 2, 2, 3 and hence, there are 3 distinct values.
In the second test case, the numbers 1 to 6 constitute the answer and they can be obtained in the following ways:


1=1*1*1*1*1

2=2*1*1*1

3=3*1*1

4=4*1

5=5

6=2*3

Problem Source

Migrated from old NTUJ.

Regional Amritapuri 2010

Subtasks

No. Testdata Range Score

Testdata and Limits

No. Time Limit (ms) Memory Limit (VSS, KiB) Output Limit (KiB) Subtasks
0 1000 65536 200