CF197A.Plate Game

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You've got a rectangular table with length aa and width bb and the infinite number of plates of radius rr . Two players play the following game: they take turns to put the plates on the table so that the plates don't lie on each other (but they can touch each other), and so that any point on any plate is located within the table's border. During the game one cannot move the plates that already lie on the table. The player who cannot make another move loses. Determine which player wins, the one who moves first or the one who moves second, provided that both players play optimally well.

输入格式

A single line contains three space-separated integers aa , bb , rr (1<=a,b,r<=100)(1<=a,b,r<=100) — the table sides and the plates' radius, correspondingly.

输出格式

If wins the player who moves first, print "First" (without the quotes). Otherwise print "Second" (without the quotes).

输入输出样例

  • 输入#1

    5 5 2
    

    输出#1

    First
    
  • 输入#2

    6 7 4
    

    输出#2

    Second
    

说明/提示

In the first sample the table has place for only one plate. The first player puts a plate on the table, the second player can't do that and loses.

In the second sample the table is so small that it doesn't have enough place even for one plate. So the first player loses without making a single move.

首页