eolymp
bolt
Try our new interface for solving problems
Problems

Doubloon Game

Doubloon Game

Time limit 1 second
Memory limit 32 MiB

Being a pirate means spending a lot of time at sea. Sometimes, when there is not much wind, days can pass by without any activity. To pass the time between chores, pirates like to play games with coins.

An old favorite of the pirates is a game for two players featuring one stack of coins. In turn, each player takes a number of coins from the stack. The number of coins that a player takes must be a power of a given integer K (1, K, K^2, etcetera). The winner is the player to take the last coin(s).

Can you help the pirates gure out how the player to move can win in a given game situation?

Input data

The first line of the input contains a single number: the number of test cases to follow. Each test case has the following format:

  • One line with two integers S and K, satisfying 1S10^9 and 1K100: the size of the stack and the parameter K, respectively.

Output data

For every test case in the input, the output should contain one integer on a single line: the smallest number of coins that the player to move can take in order to secure the win. If there is no winning move, the output should be 0.

Examples

Input example #1
5
5 1
3 2
8 2
50 3
100 10
Output example #1
1
0
2
0
1
Source ICPC BAPC 2011 Finals