結果

問題 No.153 石の山
ユーザー maine_honzukimaine_honzuki
提出日時 2020-05-27 20:37:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 680 bytes
コンパイル時間 1,542 ms
コンパイル使用メモリ 164,568 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-21 05:17:26
合計ジャッジ時間 2,685 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int f(int)':
main.cpp:30:1: warning: control reaches end of non-void function [-Wreturn-type]
   30 | }
      | ^

ソースコード

diff #

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

int memo[110];

int f(int n) {
    if (memo[n] != -1)
        return memo[n];
    if (n == 1)
        return 0;

    int used[5] = {};

    if (n >= 2) {
        int tmp = f(n / 2) ^ f(n - n / 2);
        used[tmp] = 1;
    }
    if (n >= 3) {
        int a = n / 3;
        int b = (n - a) / 2;
        int c = n - a - b;
        int tmp = f(a) ^ f(b) ^ f(c);
        used[tmp] = 1;
    }

    for (int i = 0; i < 3; i++) {
        if (!used[i])
            return memo[n] = i;
    }
}

int main() {
    int N;
    cin >> N;

    for (int i = 0; i <= N; i++) {
        memo[i] = -1;
    }

    cout << (f(N) ? 'A' : 'B') << endl;
}
0