408089: GYM102984 E Observer Game
Description
Yuto and Platina are trying to play a new game called the guarding game. The game is played on an $$$N \times M$$$ rectangular grid ($$$N \le M$$$).
The game always starts with Yuto, and the two take turns placing observers in the desired empty position on their turn.
In this game, "safe state" means that there is at least one observer in every $$$K \times K$$$ square that is completely contained within the grid.
At the moment the game is in a safe state, the game ends, and the player who played the most recent turn wins.
The players tried $$$T$$$ games with different parameters. When both are playing their best, let's predict who will win for every game!
InputThe first line gives the number of games, $$$T$$$, to be played ($$$1 \le T \le 10^5$$$).
Then $$$T$$$ lines follow each containing three integers $$$N$$$, $$$M$$$ and $$$K$$$ ($$$1 \le N \le 3000$$$, $$$N \le M \le 10^5$$$, $$$1 \le K \le N$$$), representing the dimensions of the grid and the size of the square, respectively.
OutputFor each case, print the winner's name: either "Yuto" or "Platina".
ExampleInput2 1 2 1 3 3 2Output
Platina Yuto