CF1899A.Game with Integers

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Vanya and Vova are playing a game. Players are given an integer nn . On their turn, the player can add 11 to the current integer or subtract 11 . The players take turns; Vanya starts. If after Vanya's move the integer is divisible by 33 , then he wins. If 1010 moves have passed and Vanya has not won, then Vova wins.

Write a program that, based on the integer nn , determines who will win if both players play optimally.

输入格式

The first line contains the integer tt ( 1t1001 \leq t \leq 100 ) — the number of test cases.

The single line of each test case contains the integer nn ( 1n10001 \leq n \leq 1000 ).

输出格式

For each test case, print "First" without quotes if Vanya wins, and "Second" without quotes if Vova wins.

输入输出样例

  • 输入#1

    6
    1
    3
    5
    100
    999
    1000

    输出#1

    First
    Second
    First
    First
    Second
    First
首页