CF167C.Wizards and Numbers

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

In some country live wizards. They love playing with numbers.

The blackboard has two numbers written on it — aa and bb . The order of the numbers is not important. Let's consider a<=ba<=b for the sake of definiteness. The players can cast one of the two spells in turns:

  • Replace bb with bakb-a^{k} . Number kk can be chosen by the player, considering the limitations that k>0 and bak>=0b-a^{k}>=0 . Number kk is chosen independently each time an active player casts a spell.
  • Replace bb with b mod ab mod a .

If a>b , similar moves are possible.

If at least one of the numbers equals zero, a player can't make a move, because taking a remainder modulo zero is considered somewhat uncivilized, and it is far too boring to subtract a zero. The player who cannot make a move, loses.

To perform well in the magic totalizator, you need to learn to quickly determine which player wins, if both wizards play optimally: the one that moves first or the one that moves second.

输入格式

The first line contains a single integer tt — the number of input data sets ( 1<=t<=1041<=t<=10^{4} ). Each of the next tt lines contains two integers aa , bb ( 0<=a,b<=10180<=a,b<=10^{18} ). The numbers are separated by a space.

Please do not use the %lld specificator to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specificator.

输出格式

For any of the tt input sets print "First" (without the quotes) if the player who moves first wins. Print "Second" (without the quotes) if the player who moves second wins. Print the answers to different data sets on different lines in the order in which they are given in the input.

输入输出样例

  • 输入#1

    4
    10 21
    31 10
    0 1
    10 30
    

    输出#1

    First
    Second
    Second
    First
    

说明/提示

In the first sample, the first player should go to (11,10). Then, after a single move of the second player to (1,10), he will take 10 modulo 1 and win.

In the second sample the first player has two moves to (1,10) and (21,10). After both moves the second player can win.

In the third sample, the first player has no moves.

In the fourth sample, the first player wins in one move, taking 30 modulo 10.

首页