結果

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

ソースコード

diff #

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

int main() {
    ios::sync_with_stdio(0);
    cin.tie(0);
    int N;
    cin >> N;
    vector<ll> A(N);
    for (int i=0;i<N;i++) cin >> A[i];
    ll ans = 0LL;
    for (int i=1;i<N;i+=2) {
        ans ^= A[i];
    }
    if (ans == 0) {
        cout << "Bob" << "\n";
    } else {
        cout << "Alice" << "\n";
    }
    return 0;
}
0