結果

問題 No.153 石の山
ユーザー nvt4snvt4s
提出日時 2019-04-30 03:36:59
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 938 bytes
コンパイル時間 1,340 ms
コンパイル使用メモリ 165,768 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-07 17:13:40
合計ジャッジ時間 2,349 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h> 
using namespace std;
typedef long long ll;
ll INFL = 1000000000000000010;//10^18 = 2^60
int INF = 2000000000;//10^9
ll MOD  = 998244353;
vector<int> memo(110, -1);

int grundy(int N){
    if(memo.at(N) != -1) return memo.at(N);
    if(N == 1) return 0;
    if(N == 2) return 1;
    
    set<int> s;
    if(N % 2 == 0){
        s.insert(grundy(N/2) ^ grundy(N/2));
    }else{
        s.insert(grundy(N/2) ^ grundy(N/2+1));
    }
    
    
    if(N % 3 == 1){
        s.insert(grundy(N/3) ^ grundy(N/3) ^ grundy(N/3+1));
    }else if(N % 3 == 2){
        s.insert(grundy(N/3) ^ grundy(N/3+1) ^ grundy(N/3+1));
    }else{
        s.insert(grundy(N/3) ^ grundy(N/3) ^ grundy(N/3));
    }
    
    int res = 0;
    while(s.count(res)) res++;
    return memo.at(N) = res;
    
}

int main() {
    int N;
    cin >> N;
    if(grundy(N)){
        cout << "A" << endl;
    }else{
        cout << "B" << endl;
    }
    
}
0