結果

問題 No.2141 Enumeratest
ユーザー nono00nono00
提出日時 2022-12-29 17:06:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 1,754 bytes
コンパイル時間 975 ms
コンパイル使用メモリ 77,256 KB
実行使用メモリ 18,916 KB
最終ジャッジ日時 2024-11-24 18:22:56
合計ジャッジ時間 2,669 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 7 ms
7,040 KB
testcase_03 AC 17 ms
18,796 KB
testcase_04 AC 35 ms
18,916 KB
testcase_05 AC 17 ms
18,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 4 ms
6,816 KB
testcase_08 AC 8 ms
8,784 KB
testcase_09 AC 7 ms
6,912 KB
testcase_10 AC 11 ms
12,056 KB
testcase_11 AC 16 ms
17,464 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 6 ms
6,816 KB
testcase_14 AC 16 ms
17,168 KB
testcase_15 AC 11 ms
11,456 KB
testcase_16 AC 12 ms
13,400 KB
testcase_17 AC 23 ms
13,280 KB
testcase_18 AC 21 ms
16,060 KB
testcase_19 AC 31 ms
16,788 KB
testcase_20 AC 22 ms
14,240 KB
testcase_21 AC 23 ms
15,680 KB
testcase_22 AC 17 ms
12,180 KB
testcase_23 AC 12 ms
7,424 KB
testcase_24 AC 21 ms
18,116 KB
testcase_25 AC 9 ms
8,280 KB
testcase_26 AC 17 ms
17,328 KB
testcase_27 AC 21 ms
15,208 KB
testcase_28 AC 22 ms
18,348 KB
testcase_29 AC 15 ms
11,268 KB
testcase_30 AC 29 ms
17,248 KB
testcase_31 AC 21 ms
12,868 KB
testcase_32 AC 26 ms
14,000 KB
testcase_33 AC 19 ms
12,372 KB
testcase_34 AC 25 ms
15,312 KB
testcase_35 AC 4 ms
6,816 KB
testcase_36 AC 23 ms
17,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

constexpr long long mod = 998244353;

long long pow_mod(long long x, long long y, long long mod) {
    long long result = 1;
    while (y > 0) {
        if (y & 1) {
            result *= x;
            result %= mod;
        }
        x *= x;
        x %= mod;
        y >>= 1;
    }
    return result;
}

template<typename T>
void print(const T t, bool ln = true) {
    cout << t;
    if (ln) {
        cout << '\n';
    } else {
        cout << ' ';
    }
}

template<typename T>
void vprint(const vector<T> &v) {
    for (int i = 0; i < (int)v.size(); i++) {
        print(v[i], false);
    }
    cout << '\n';
}

template<typename T>
void vvprint(const vector<vector<T>> &vv) {
    for (int i = 0; i < (int)vv.size(); i++) {
        vprint(vv[i]);
    }
}

void solve() {
    long long n, m;
    cin >> n >> m;
    long long mx = max(n, m);
    vector<long long> fact(mx + 1, 1), fact_inv(mx + 1, 1);

    for (int i = 2; i <= mx; i++) {
        fact[i] = fact[i - 1] * i;
        fact[i] %= mod;
    }

    fact_inv[mx] = pow_mod(fact[mx], mod - 2, mod);
    for (int i = mx - 1; i > 1; i--) {
        fact_inv[i] = fact_inv[i + 1] * (i + 1);
        fact_inv[i] %= mod;
    }

    auto comb = [&](long long n, long long k) {
        if (n < k) {
            return 1LL;
        } else {
            return fact[n] * fact_inv[k] % mod * fact_inv[n - k] % mod;
        }
    };

    long long ans = 1;
    while (n > 0 && m > 0) {
        long long k = (m / n) + ((m % n) > 0);
        ans *= comb(m, k);
        ans %= mod;
        m -= k;
        n--;
    }

    print(ans);
}

int main() {
    int q = 1;
    // cin >> q;
    while (q--) {
        solve();
    }
}
0