結果

問題 No.524 コインゲーム
ユーザー 634kami634kami
提出日時 2020-03-13 10:17:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 515 bytes
コンパイル時間 1,736 ms
コンパイル使用メモリ 167,832 KB
実行使用メモリ 817,556 KB
最終ジャッジ日時 2024-11-21 16:23:21
合計ジャッジ時間 11,567 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 RE -
testcase_03 TLE -
testcase_04 RE -
testcase_05 AC 4 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 RE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 4 ms
6,816 KB
testcase_12 AC 8 ms
10,828 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 25 ms
42,220 KB
testcase_18 AC 9 ms
17,164 KB
testcase_19 AC 8 ms
15,544 KB
testcase_20 AC 30 ms
32,432 KB
testcase_21 AC 20 ms
35,984 KB
testcase_22 AC 22 ms
36,188 KB
testcase_23 AC 3 ms
6,820 KB
testcase_24 MLE -
testcase_25 MLE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 MLE -
testcase_30 RE -
testcase_31 MLE -
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;

const int INF = 2e9;
int N;

int main() {
    cin >> N;

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

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

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

    return 0;
}
0