100483: [AtCoder]ABC048 D - An Ordinary Game

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $500$ points

Problem Statement

There is a string $s$ of length $3$ or greater. No two neighboring characters in $s$ are equal.

Takahashi and Aoki will play a game against each other. The two players alternately performs the following operation, Takahashi going first:

  • Remove one of the characters in $s$, excluding both ends. However, a character cannot be removed if removal of the character would result in two neighboring equal characters in $s$.

The player who becomes unable to perform the operation, loses the game. Determine which player will win when the two play optimally.

Constraints

  • $3 ≤ |s| ≤ 10^5$
  • $s$ consists of lowercase English letters.
  • No two neighboring characters in $s$ are equal.

Input

The input is given from Standard Input in the following format:

$s$

Output

If Takahashi will win, print First. If Aoki will win, print Second.


Sample Input 1

aba

Sample Output 1

Second

Takahashi, who goes first, cannot perform the operation, since removal of the b, which is the only character not at either ends of $s$, would result in $s$ becoming aa, with two as neighboring.


Sample Input 2

abc

Sample Output 2

First

When Takahashi removes b from $s$, it becomes ac. Then, Aoki cannot perform the operation, since there is no character in $s$, excluding both ends.


Sample Input 3

abcab

Sample Output 3

First

Input

题意翻译

给定一个长度大于等于3的字符串$S$,$S$中没有相邻的两个字符相等。 **玩法**: 玩家$1$和玩家$2$交替进行操作——从$S$中删除一个字符,但删除后$S$不能有相邻的两个字符相等,否则另一位玩家获胜(两人都很聪明) 现在玩家$1$先操作,请问谁可以获得胜利? 输入一个字符串$S$ 若玩家$1$胜利,输出`first`;玩家$2$获胜,输出`Second`

加入题单

算法标签: