結果

問題 No.1716 Bonus Nim
ユーザー se1ka2se1ka2
提出日時 2021-10-22 22:15:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 554 bytes
コンパイル時間 702 ms
コンパイル使用メモリ 76,720 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-09-23 05:50:31
合計ジャッジ時間 8,989 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 348 ms
6,912 KB
testcase_05 WA -
testcase_06 AC 352 ms
7,552 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 365 ms
7,680 KB
testcase_10 AC 366 ms
7,680 KB
testcase_11 AC 361 ms
7,040 KB
testcase_12 AC 368 ms
7,296 KB
testcase_13 AC 412 ms
8,320 KB
testcase_14 WA -
testcase_15 AC 363 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 WA -
testcase_23 AC 463 ms
11,264 KB
testcase_24 AC 449 ms
11,776 KB
testcase_25 AC 471 ms
11,904 KB
testcase_26 AC 438 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
using namespace std;

int main()
{
    int t;
    cin >> t;
    while(t--){
        int n;
        cin >> n;
        map<int, int> mp;
        for(int i = 0; i < n; i++){
            int a;
            cin >> a;
            mp[a]++;
        }
        if(n % 2){
            cout << "Alice" << endl;
            continue;
        }
        int c = 0;
        for(auto itr = mp.begin(); itr != mp.end(); itr++) c += itr->second - 2;
        if(c >= 0) cout << "Bob" << endl;
        else cout << "Alice" << endl;
    }
}
0