結果

問題 No.1716 Bonus Nim
ユーザー cureskol
提出日時 2021-10-22 22:45:06
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 464 bytes
コンパイル時間 2,525 ms
コンパイル使用メモリ 177,788 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-23 06:28:56
合計ジャッジ時間 4,468 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other WA * 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];
    string ans="Bob";
    if(n&1)ans="Alice";
    REP(i,n-1)if(v[i]!=v[i+1])ans="Aloce";
    cout<<ans<<"\n";
  }
}
0