CF1858A.Buttons

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Anna and Katie ended up in a secret laboratory.

There are a+b+ca+b+c buttons in the laboratory. It turned out that aa buttons can only be pressed by Anna, bb buttons can only be pressed by Katie, and cc buttons can be pressed by either of them. Anna and Katie decided to play a game, taking turns pressing these buttons. Anna makes the first turn. Each button can be pressed at most once, so at some point, one of the girls will not be able to make her turn.

The girl who cannot press a button loses. Determine who will win if both girls play optimally.

输入格式

The first line contains a single integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases.

Each test case consists of three integers aa , bb , and cc ( 1a,b,c1091 \le a, b, c \le 10^9 ) — the number of buttons that can only be pressed by Anna, the number of buttons that can only be pressed by Katie, and the number of buttons that can be pressed by either of them, respectively.

输出格式

For each test case, output First if Anna wins, or Second if Katie wins.

输入输出样例

  • 输入#1

    5
    1 1 1
    9 3 3
    1 2 3
    6 6 9
    2 2 8

    输出#1

    First
    First
    Second
    First
    Second

说明/提示

For the simplicity of the explanation, we will numerate the buttons by the numbers from 11 to a+b+ca+b+c : the first aa buttons can only be pressed by Anna, the next bb buttons can only be pressed by Katie, and the last cc buttons can be pressed by either of them.

In the first test case, Anna can press the 33 -rd button on the first turn. Then Katie will press the 22 -nd button (since it is the only possible turn for her). Then Anna will press the 11 -st button. Katie won't have a button to press, so Anna will win.

In the second test case, Anna can press the first nine buttons in some order on her turns. No matter what buttons Katie will press, all the buttons from the 1010 -th to the 1515 -th will be pressed after 1212 turns. On the 1313 -th turn, Anna will press one of the first nine buttons and Katie will not have a button to press on her turn. Thus, Anna will win.

In the third test case, the game can proceed as follows:

  • On the 11 -st turn Anna presses the 55 -th button.
  • On the 22 -st turn Katie presses the 44 -th button.
  • On the 33 -st turn Anna presses the 66 -th button.
  • On the 44 -st turn Katie presses the 33 -th button.
  • On the 55 -st turn Anna presses the 11 -th button.
  • On the 66 -st turn Katie presses the 22 -th button.
  • Anna cannot make the turn, so Katie wins.

It can be shown that Katie can win no matter what moves Anna takes.

首页