結果

問題 No.1832 NAND Reversible
ユーザー ktr216ktr216
提出日時 2022-02-04 22:45:53
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 1,509 bytes
コンパイル時間 1,843 ms
コンパイル使用メモリ 167,700 KB
実行使用メモリ 4,648 KB
最終ジャッジ日時 2023-09-02 05:15:10
合計ジャッジ時間 3,462 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
4,420 KB
testcase_01 AC 4 ms
4,408 KB
testcase_02 AC 4 ms
4,520 KB
testcase_03 AC 31 ms
4,416 KB
testcase_04 AC 4 ms
4,576 KB
testcase_05 AC 3 ms
4,632 KB
testcase_06 AC 3 ms
4,640 KB
testcase_07 AC 26 ms
4,624 KB
testcase_08 AC 31 ms
4,568 KB
testcase_09 AC 4 ms
4,568 KB
testcase_10 AC 4 ms
4,396 KB
testcase_11 AC 4 ms
4,456 KB
testcase_12 AC 3 ms
4,648 KB
testcase_13 AC 3 ms
4,516 KB
testcase_14 AC 3 ms
4,448 KB
testcase_15 AC 10 ms
4,644 KB
testcase_16 AC 13 ms
4,496 KB
testcase_17 AC 29 ms
4,460 KB
testcase_18 AC 4 ms
4,576 KB
testcase_19 AC 6 ms
4,448 KB
testcase_20 AC 4 ms
4,392 KB
testcase_21 AC 33 ms
4,516 KB
testcase_22 AC 33 ms
4,392 KB
testcase_23 AC 4 ms
4,628 KB
testcase_24 AC 3 ms
4,396 KB
testcase_25 AC 18 ms
4,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using ll = long long;
using VI = vector<int>;
using P = pair<int, int>;

#define REP(i, n) for (int i = 0; i < (int)(n); i++)
#define FOR(i, a, b) for (ll i = a; i < (ll)(b); i++)
#define ALL(a) (a).begin(),(a).end()

constexpr int INF = 1001001001;
constexpr ll LINF = 1001001001001001001ll;
constexpr int DX[] = {1, 0, -1, 0};
constexpr int DY[] = {0, 1, 0, -1};

template< typename T1, typename T2>
inline bool chmax(T1 &a, T2 b) {return a < b && (a = b, true); }
template< typename T1, typename T2>
inline bool chmin(T1 &a, T2 b) {return a > b && (a = b, true); }

const ll MOD = 998244353;

vector<ll> f(200001, 1);

ll mod_pow(ll x, ll n, ll mod) {
    ll res = 1;
    while (n > 0) {
        if (n & 1) res = res * x % mod;
        x = x * x % mod;
        n >>= 1;
    }
    return res;
}

ll C(ll n, ll k) {
    return f[n] * mod_pow(f[k], MOD - 2, MOD) % MOD * mod_pow(f[n - k], MOD - 2, MOD) % MOD;
}

int main() {
    REP(i, 200000) f[i + 1] = f[i] * (i + 1) % MOD;
    ll N, K, ans = 0;
    cin >> N >> K;
    // 1...10x...x01...1
    if (K == 0) {
        cout << 1 << endl;
        return 0;
    }
    if (K == 1) {
        // 01even X = 0, Y = 1
        // 01odd X = 1, Y = 1
        if (N % 2) {
            cout << N - 2 << endl;
        } else {
            cout << 2 << endl;
        }
        return 0;
    }
    for (ll i = 0; i <= N - K; i += 2) {
        ans = (ans + C(N - i - 2, K - 2) * (i + 1)) % MOD;
    }
    cout << ans << endl;
}
0