結果

問題 No.1716 Bonus Nim
ユーザー nawawannawawan
提出日時 2021-10-22 23:04:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 434 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 2,075 ms
コンパイル使用メモリ 208,880 KB
実行使用メモリ 12,604 KB
最終ジャッジ日時 2024-09-23 06:58:42
合計ジャッジ時間 9,803 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
6,944 KB
testcase_04 AC 330 ms
7,156 KB
testcase_05 AC 342 ms
8,756 KB
testcase_06 AC 337 ms
7,996 KB
testcase_07 AC 345 ms
7,920 KB
testcase_08 AC 331 ms
8,004 KB
testcase_09 AC 336 ms
8,192 KB
testcase_10 AC 336 ms
8,064 KB
testcase_11 AC 330 ms
7,552 KB
testcase_12 AC 340 ms
7,744 KB
testcase_13 AC 372 ms
8,988 KB
testcase_14 AC 331 ms
6,940 KB
testcase_15 AC 379 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 420 ms
11,392 KB
testcase_23 AC 423 ms
11,776 KB
testcase_24 AC 414 ms
12,160 KB
testcase_25 AC 434 ms
12,504 KB
testcase_26 AC 391 ms
12,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
    int T;
    cin >> T;
    while(T--){
        int N;
        cin >> N;
        vector<int> A(N);
        for(int i = 0; i < N; i++) cin >> A[i];
        map<int, int> m;
        for(int i = 0; i < N; i++) m[A[i]]++;
        bool f = true;
        for(auto v : m){
            if(v.second % 2 == 1) f = false;
        }
        if(!f) cout << "Alice" << endl;
        else cout << "Bob" << endl;
    }
}
0