結果

問題 No.1716 Bonus Nim
ユーザー hotman78hotman78
提出日時 2021-11-11 14:56:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 448 ms / 2,000 ms
コード長 459 bytes
コンパイル時間 2,455 ms
コンパイル使用メモリ 209,228 KB
実行使用メモリ 12,628 KB
最終ジャッジ日時 2024-11-22 20:59:19
合計ジャッジ時間 9,993 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 326 ms
7,156 KB
testcase_05 AC 348 ms
8,496 KB
testcase_06 AC 277 ms
6,844 KB
testcase_07 AC 317 ms
7,892 KB
testcase_08 AC 345 ms
8,088 KB
testcase_09 AC 217 ms
6,816 KB
testcase_10 AC 349 ms
8,064 KB
testcase_11 AC 346 ms
7,552 KB
testcase_12 AC 356 ms
7,616 KB
testcase_13 AC 411 ms
8,704 KB
testcase_14 AC 350 ms
6,816 KB
testcase_15 AC 362 ms
6,816 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,820 KB
testcase_22 AC 448 ms
11,520 KB
testcase_23 AC 204 ms
6,820 KB
testcase_24 AC 333 ms
9,008 KB
testcase_25 AC 316 ms
10,704 KB
testcase_26 AC 392 ms
12,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
    int t;
    cin>>t;
    while(t--){
        int n;
        cin>>n;
        vector<int>v(n);
        for(int i=0;i<n;++i)cin>>v[i];
        bool ok=0;
        if(n%2)ok=1;
        else{
            map<int,int>m;
            for(auto e:v)m[e]++;
            for(auto [s,t]:m)if(t%2){
                ok=1;
                break;
            }
        }
        cout<<(ok?"Alice":"Bob")<<endl;
    }
}
0