atcoder#ARC064B. [ABC048D] An Ordinary Game
[ABC048D] An Ordinary Game
Score : points
Problem Statement
There is a string of length or greater. No two neighboring characters in 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 , excluding both ends. However, a character cannot be removed if removal of the character would result in two neighboring equal characters in .
The player who becomes unable to perform the operation, loses the game. Determine which player will win when the two play optimally.
Constraints
- consists of lowercase English letters.
- No two neighboring characters in are equal.
Input
The input is given from Standard Input in the following format:
Output
If Takahashi will win, print First
. If Aoki will win, print Second
.
aba
Second
Takahashi, who goes first, cannot perform the operation, since removal of the b
, which is the only character not at either ends of , would result in becoming aa
, with two a
s neighboring.
abc
First
When Takahashi removes b
from , it becomes ac
.
Then, Aoki cannot perform the operation, since there is no character in , excluding both ends.
abcab
First