結果

問題 No.1716 Bonus Nim
ユーザー SSRSSSRS
提出日時 2021-10-22 23:01:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 445 ms / 2,000 ms
コード長 498 bytes
コンパイル時間 1,659 ms
コンパイル使用メモリ 174,736 KB
実行使用メモリ 12,604 KB
最終ジャッジ日時 2024-09-23 06:54:45
合計ジャッジ時間 9,386 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 328 ms
7,152 KB
testcase_05 AC 337 ms
8,884 KB
testcase_06 AC 329 ms
8,000 KB
testcase_07 AC 344 ms
7,924 KB
testcase_08 AC 329 ms
8,004 KB
testcase_09 AC 336 ms
8,320 KB
testcase_10 AC 332 ms
8,064 KB
testcase_11 AC 327 ms
7,424 KB
testcase_12 AC 342 ms
7,616 KB
testcase_13 AC 367 ms
8,992 KB
testcase_14 AC 329 ms
6,384 KB
testcase_15 AC 379 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 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 398 ms
11,520 KB
testcase_23 AC 394 ms
11,776 KB
testcase_24 AC 393 ms
12,288 KB
testcase_25 AC 445 ms
12,376 KB
testcase_26 AC 387 ms
12,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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