結果

問題 No.524 コインゲーム
ユーザー 634kami634kami
提出日時 2020-03-13 10:18:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 512 bytes
コンパイル時間 1,662 ms
コンパイル使用メモリ 168,712 KB
実行使用メモリ 814,820 KB
最終ジャッジ日時 2024-11-21 16:25:22
合計ジャッジ時間 8,971 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 8 ms
10,192 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 TLE -
testcase_11 AC 3 ms
6,692 KB
testcase_12 AC 11 ms
18,196 KB
testcase_13 AC 2 ms
6,688 KB
testcase_14 AC 2 ms
6,688 KB
testcase_15 AC 2 ms
6,692 KB
testcase_16 AC 2 ms
6,692 KB
testcase_17 MLE -
testcase_18 AC 17 ms
30,924 KB
testcase_19 AC 16 ms
27,800 KB
testcase_20 AC 32 ms
61,652 KB
testcase_21 MLE -
testcase_22 MLE -
testcase_23 AC 4 ms
6,692 KB
testcase_24 MLE -
testcase_25 MLE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 MLE -
testcase_30 RE -
testcase_31 TLE -
testcase_32 AC 3 ms
6,688 KB
testcase_33 AC 2 ms
6,692 KB
testcase_34 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using ll = long long;
ll N;

int main() {
    cin >> N;

    vector<ll> grundy(N);  // 第1部分ゲームのGrundy数
    for (ll i = 0; i < N; i++) {
        grundy[i] = i + 1;
    }

    // 第1部分ゲームの XOR sum を計算
    ll xor_sum = 0;
    for (auto g : grundy) {
        xor_sum ^= g;
    }

    if (xor_sum == 0) {  // 後手必勝
        cout << "X" << endl;
    } else {  // 先手必勝
        cout << "O" << endl;
    }

    return 0;
}
0