結果

問題 No.2059 Odd Move Nim
ユーザー nawawannawawan
提出日時 2022-08-26 22:38:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 590 bytes
コンパイル時間 2,085 ms
コンパイル使用メモリ 206,736 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-10-13 23:17:19
合計ジャッジ時間 4,839 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 147 ms
13,312 KB
testcase_14 AC 144 ms
13,312 KB
testcase_15 AC 143 ms
13,440 KB
testcase_16 AC 143 ms
13,312 KB
testcase_17 AC 145 ms
13,312 KB
testcase_18 AC 150 ms
13,312 KB
testcase_19 AC 151 ms
13,312 KB
testcase_20 AC 155 ms
13,440 KB
testcase_21 AC 143 ms
13,312 KB
testcase_22 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
    int N;
    cin >> N;
    vector<int> A(N);
    int l = 0, r = 0;
    set<int> s;
    for(int i = 0; i < N; i++) {
        cin >> A[i];
        s.insert(A[i]);
    }
    for(int i = 1; i < N; i++){
        if(i % 2 == 0) r ^= A[i];
        else l ^= A[i];
    }
    if(l % 2 == 0) {
        int cnt = 0;
        for(int i = 0; i < 29; i++){
            if(s.count(1 << i)) cnt++;
        }
        if(cnt >= 2) cout << "Alice" << endl;
        else cout << "Bob" << endl;
    }
    else {
        cout << "Alice" << endl;
    }
}
0