結果

問題 No.1716 Bonus Nim
ユーザー cureskol
提出日時 2021-10-22 22:42:21
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 427 bytes
コンパイル時間 1,819 ms
コンパイル使用メモリ 177,552 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-23 06:23:51
合計ジャッジ時間 4,381 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 10 WA * 16
権限があれば一括ダウンロードができます

ソースコード

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];
    if(n==2&&v[0]==v[1])cout<<"Bob"<<"\n";
    else cout<<"Alice"<<"\n";
  }
}
0