B - Brian plays with Fito
Languages: C, C++, Java, Python, Kotlin, C#
Time & Memory limits:
(details)
Brian and Fito are playing a game with candies. Initially, there are $N$ heaps where the $i$-th of them has $a_i$ candies. In his turn, a player can only take a positive number of candies from one of the heaps. Brian plays first and they alternate moves.
If the $\text{XOR}$ sum, $a_1\, \text{XOR}\, a_2\, \text{XOR}\, ... \text{XOR}\, a_N$, of the numbers of remaining candies of these heaps, becomes $0$ as a result of a player's move, the player loses.
Given the initial configuration of the heaps, your task is to write a program that determines who will win the game. This can help Fito to decide an initial configuration that allows him to win.