CF1375F.Integer Game

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

This is an interactive problem.

Anton and Harris are playing a game to decide which of them is the king of problemsetting.

There are three piles of stones, initially containing aa , bb , and cc stones, where aa , bb , and cc are distinct positive integers. On each turn of the game, the following sequence of events takes place:

  • The first player chooses a positive integer yy and provides it to the second player.
  • The second player adds yy stones to one of the piles, with the condition that he cannot choose the same pile in two consecutive turns.

The second player loses if, at any point, two of the piles contain the same number of stones. The first player loses if 10001000 turns have passed without the second player losing.

Feeling confident in his skills, Anton decided to let Harris choose whether he wants to go first or second. Help Harris defeat Anton and become the king of problemsetting!

输入格式

The first line of input contains three distinct positive integers aa , bb , and cc ( 1a,b,c1091 \le a, b, c \le 10^9 ) — the initial number of stones in piles 11 , 22 , and 33 respectively.

输出格式

The interaction begins by reading the integers aa , bb and cc .

After reading the integers, print a single line containing either "First" or "Second", denoting who you want to play as (as first or second correspondently).

On each turn, the first player (either you or the judge) must print a positive integer yy ( 1y10121 \le y \le 10^{12} ).

Then, the second player must print 11 , 22 , or 33 , indicating which pile should have yy stones added to it. From the second turn onwards, the pile that the second player chooses must be different from the pile that they chose on the previous turn.

If you are playing as Second and complete 10001000 turns without losing, or if you are playing as First and the judge has determined that it cannot make a move without losing, the interactor will print 00 and will finish interaction. This means that your program is correct for this test case, and you should exit immediately.

If you are playing as First and complete 10001000 turns without winning, or if you are playing as Second and print a move that makes two piles have the same number of stones, or if you output an invalid move as either player, the interactor will print 1-1 and will finish interaction. You will receive a Wrong Answer verdict. Make sure to exit immediately to avoid getting other verdicts.

After printing something do not forget to output end of line and flush the output. Otherwise, you will get Idleness limit exceeded. To do this, use:

  • fflush(stdout) or cout.flush() in C++;
  • System.out.flush() in Java;
  • flush(output) in Pascal;
  • stdout.flush() in Python;
  • see documentation for other languages.

In this problem, hacks are disabled.

输入输出样例

  • 输入#1

    5 2 6
    
    
    3
    
    0

    输出#1

    First
    2
    
    3

说明/提示

In the sample input, the piles initially have 55 , 22 , and 66 stones. Harris decides to go first and provides the number 22 to Anton. Anton adds 22 stones to the third pile, which results in 55 , 22 , and 88 .

In the next turn, Harris chooses 33 . Note that Anton cannot add the stones to the third pile since he chose the third pile in the previous turn. Anton realizes that he has no valid moves left and reluctantly recognizes Harris as the king.

首页