Remove One or Cut to a Third
A single pile of n stones; a move removes 1 stone, or removes exactly two-thirds (so a pile of size divisible by 3 may drop to a third). The player unable to move loses. For each query n, print the winner.
Input: the first line has Q; each of the next Q lines has a pile size n.
Output: one line per query.
Constraints:
- 1 ≤ Q ≤ 104
- 0 ≤ n ≤ 104
Sample Tests
Input 1
3 1 3 9
Output 1
FIRST FIRST SECOND
Discussion (opens after you solve — no spoilers before)
No comments yet.