#abc290g. [abc290_g]Edge Elimination

[abc290_g]Edge Elimination

Problem Statement

Solve the following problem for TT test cases.

We have a perfect KK-ary tree of depth DD (with 1+K+K2+dots+KD1+K+K^2+\\dots+K^D vertices).
Your objective is to cut some of the edges to obtain a connected component with exactly XX vertices.
At least how many edges must be cut to achieve the objective?

Constraints

  • All values in the input are integers.
  • 1leTle1001 \\le T \\le 100
  • 1leD1 \\le D
  • 2leK2 \\le K
  • $\\displaystyle 1 \\le X \\le \\sum_{i=0}^{D} K^i \\le 10^{18}$

Input

The input is given from Standard Input in the following format:

TT case1case_1 vdots\\vdots caseTcase_T

Here, caseicase_i denotes the ii-th test case.
Each test case is given in the following format:

DD KK XX

Output

Print TT lines.
The ii-th line should contain the answer to the ii-th test case as an integer.


Sample Input 1

11
2 2 1
2 2 2
2 2 3
2 2 4
2 2 5
2 2 6
2 2 7
1 999999999999999999 1
1 999999999999999999 2
1 999999999999999999 999999999999999999
1 999999999999999999 1000000000000000000

Sample Output 1

1
2
1
1
2
1
0
1
999999999999999998
1
0