#Lutece0336. Nim-B Sum

Nim-B Sum

Migrated from Lutece 336 _Nim-B Sum _

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

The game of NIM is played with any number of piles of objects with any number of objects in each pile. At each turn, a player takes one or more (up to all) objects from one pile. In the normal form of the game, the player who takes the last object is the winner. There is a well-known strategy for this game based on the nim-22 sum.

The Nim-BB sum (nim sum base BB) of two non-negative integers XX and YY (written NimSum(B,X,Y)NimSum(B, X, Y)) is computed as follows:

  1. Write each of XX and YY in base BB.
  2. Each digit in base BB of the Nim-BB sum is the sum modulo BB of the corresponding digits in the base BB representation of XX and YY.

For example:

  • $NimSum(2, 123, 456) = 1111011 ¤111001000 = 110110011 = 435$
  • NimSum(3,123,456)=11120¤121220=102010=300NimSum(3, 123, 456) = 11120 ¤121220 = 102010 = 300
  • NimSum(4,123,456)=1323¤13020=10303=307NimSum(4, 123, 456) = 1323 ¤13020 = 10303 = 307

The strategy for normal form Nim is to compute the Nim-22 sum TT of the sizes of all piles. If at any time, you end your turn with T=0T = 0, you are guaranteed a WIN. Any opponent move must leave TT not 00 and there is always a move to get TT back to 00. This is done by computing NimSum(2,T,PS)NimSum(2, T, PS)for each pile; if this is less than the pile size (PSPS), compute the difference between the PSPS and the Nim-22 sum and remove it from that pile as your next move.

Write a program to compute NimSum(B,X,Y)NimSum(B, X, Y).

Input

The first line of input contains a single integer PP, (1P10001\leq P\leq 1000), which is the number of data sets that follow. Each data set is a single line that contains the data set number, followed by a space, followed by three space separated decimal integers, BB, XX and YY. 2B20000002\leq B\leq 2000000, 0X20000000\leq X\leq 2000000, 0Y20000000\leq Y\leq 2000000.

Output

For each data set there is one line of output. It contains the data set number allowed by a single space, followed by NN, the decimal representation of the Nim sum in base BB of XX and YY.

Samples

4
1 2 123 456
2 3 123 456
3 4 123 456
4 5 123 456
1 435
2 300
3 307
4 429

Resources

Greater New York 2010