結果

問題 No.1716 Bonus Nim
ユーザー cureskol
提出日時 2021-10-22 22:47:16
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 504 bytes
コンパイル時間 2,056 ms
コンパイル使用メモリ 180,592 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-23 06:30:43
合計ジャッジ時間 5,289 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;

#define REP(i,n) for(int i=0;i<(n);i++)
#define RREP(i,n) for(int i=(n-1);i>=0;i--)
#define ALL(v) v.begin(),v.end()

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int t;cin>>t;
  REP(_,t){
    int n;cin>>n;
    vector<int> v(n);
    REP(i,n)cin>>v[i];
    sort(ALL(v));
    string ans="Bob";
    if(n&1)ans="Alice";
    else
      for(int i=0;i<n;i+=2)if(v[i]!=v[i+1])ans="Alice";
    cout<<ans<<"\n";
  }
}
0