結果

問題 No.2059 Odd Move Nim
ユーザー shauuebbitshauuebbit
提出日時 2022-09-05 22:55:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 1,783 bytes
コンパイル時間 2,076 ms
コンパイル使用メモリ 202,472 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-01 00:44:52
合計ジャッジ時間 4,727 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 84 ms
6,944 KB
testcase_13 AC 84 ms
6,944 KB
testcase_14 AC 84 ms
6,940 KB
testcase_15 AC 83 ms
6,940 KB
testcase_16 AC 84 ms
6,940 KB
testcase_17 AC 84 ms
6,944 KB
testcase_18 AC 84 ms
6,944 KB
testcase_19 AC 84 ms
6,944 KB
testcase_20 AC 83 ms
6,944 KB
testcase_21 AC 84 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

template <typename T = long long, typename U = int>
class BinomialCoefficients {
    int max;
    U mod;
    T *factorial;
    T *factorial_inverse;
    T *inverse;

   public:
    T get(int n, int k) {
        if (n < 0 || k < 0 || k > n)
            return 0;
        else
            return factorial[n] * (factorial_inverse[k] * factorial_inverse[n - k] % mod) % mod;
    }

    BinomialCoefficients(int max, U mod) : max(max), mod(mod) {
        factorial = new T[max + 1];
        factorial_inverse = new T[max + 1];
        inverse = new T[max + 1];

        factorial[0] = factorial[1] = 1;
        factorial_inverse[0] = factorial_inverse[1] = 1;
        inverse[1] = 1;

        for (int k = 2; k <= max; k++) {
            factorial[k] = factorial[k - 1] * k % mod;
            inverse[k] = mod - inverse[mod % k] * (mod / k) % mod;
            factorial_inverse[k] = factorial_inverse[k - 1] * inverse[k] % mod;
        }
    }

    ~BinomialCoefficients() {
        delete[] factorial;
        delete[] factorial_inverse;
        delete[] inverse;
    }
};

const int MOD = 998244353;

template <typename T, typename U, typename V>
constexpr T power(T b, U e, V mod) {
    if (b >= mod) b %= mod;
    T ret = 1;
    while (e) {
        if (e & 1) {
            ret *= b;
            ret %= mod;
        }

        b *= b;
        b %= mod;
        e >>= 1;
    }

    return ret;
}

template <typename T, typename U>
constexpr T power(T b, U e) {
    return power(b, e, MOD);
}

using namespace std;

int main() {
    int N;
    cin >> N;

    vector<int> A(N, 0);
    
    int x = 0;

    for (int i = 0; i < N; i++) {
        cin >> A[i];

        if (i & 1) x ^= A[i];
    }

    if (x) puts("Alice");
    else puts("Bob");

    return 0;
}
0