题库练习 Buttons
← 上一题 下一题 →

A16121 | Buttons

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Anna and Katie ended up in a secret laboratory.

There are $a+b+c$ buttons in the laboratory. It turned out that $a$ buttons can only be pressed by Anna, $b$ buttons can only be pressed by Katie, and $c$ 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 $t$ ( $1 \le t \le 10^4$ ) — the number of test cases.

Each test case consists of three integers $a$ , $b$ , and $c$ ( $1 \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
C++ 编辑器
输入
输出