#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- sum.
The Nim- sum (nim sum base ) of two non-negative integers and (written ) is computed as follows:
- Write each of and in base .
- Each digit in base of the Nim- sum is the sum modulo of the corresponding digits in the base representation of and .
For example:
- $NimSum(2, 123, 456) = 1111011 ¤111001000 = 110110011 = 435$
The strategy for normal form Nim is to compute the Nim- sum of the sizes of all piles. If at any time, you end your turn with , you are guaranteed a WIN. Any opponent move must leave not and there is always a move to get back to . This is done by computing for each pile; if this is less than the pile size (), compute the difference between the and the Nim- sum and remove it from that pile as your next move.
Write a program to compute .
Input
The first line of input contains a single integer , (), 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, , and . , , .
Output
For each data set there is one line of output. It contains the data set number allowed by a single space, followed by , the decimal representation of the Nim sum in base of and .
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