結果

問題 No.2059 Odd Move Nim
ユーザー Nzt3Nzt3
提出日時 2022-08-26 23:18:59
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 26 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 2,198 ms
コンパイル使用メモリ 193,776 KB
最終ジャッジ日時 2025-01-31 05:40:53
ジャッジサーバーID
(参考情報)
judge4 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  cin>>N;
  vector<int>A(N);
  for(int &i:A)cin>>i;
  int od=0;
  for(int i=1;i<N;i+=2)od^=A[i];
  bool fwin=false;
  if(od!=0)fwin=true;
  cout<<(fwin?"Alice\n":"Bob\n");
}
0