結果

問題 No.726 Tree Game
コンテスト
ユーザー xuzijian629
提出日時 2018-08-28 23:34:31
言語 C++11
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 762 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 882 ms
コンパイル使用メモリ 175,368 KB
実行使用メモリ 182,032 KB
最終ジャッジ日時 2026-04-02 03:43:23
合計ジャッジ時間 1,927 ms
ジャッジサーバーID
(参考情報)
judge1_1 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
using namespace std;

int main() {
    int y, x;
    cin >> y >> x;
    
    if (x >= 3 && y >= 3) {
        if ((x + y) % 2 == 0) {
            cout << "Second" << endl;
        } else {
            cout << "First" << endl;
        }
        return 0;
    }
    
    if (x == 1 && y == 1) {
        cout << "Second" << endl;
        return 0;
    }
    
    if (x == 1) {
        if (y % 2 == 0) {
            cout << "Second" << endl;
        } else {
            cout << "First" << endl;
        }
        return 0;
    }
    
    if (y == 1) {
        if (x % 2 == 0) {
            cout << "Second" << endl;
        } else {
            cout << "First" << endl;
        }
        return 0;
    }
    
    cout << "Second" << endl;
}
0