結果

問題 No.1431 東大文系数学2020第2問改
ユーザー vwxyzvwxyz
提出日時 2024-05-03 15:31:05
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 791 ms / 5,000 ms
コード長 1,330 bytes
コンパイル時間 3,285 ms
コンパイル使用メモリ 88,052 KB
実行使用メモリ 144,096 KB
最終ジャッジ日時 2024-05-03 15:31:22
合計ジャッジ時間 15,836 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
143,852 KB
testcase_01 AC 131 ms
143,828 KB
testcase_02 AC 130 ms
143,804 KB
testcase_03 AC 581 ms
143,884 KB
testcase_04 AC 131 ms
143,780 KB
testcase_05 AC 760 ms
143,932 KB
testcase_06 AC 772 ms
144,096 KB
testcase_07 AC 744 ms
143,800 KB
testcase_08 AC 791 ms
143,908 KB
testcase_09 AC 764 ms
143,864 KB
testcase_10 AC 440 ms
143,908 KB
testcase_11 AC 439 ms
143,800 KB
testcase_12 AC 437 ms
144,032 KB
testcase_13 AC 293 ms
143,868 KB
testcase_14 AC 290 ms
143,868 KB
testcase_15 AC 242 ms
143,884 KB
testcase_16 AC 192 ms
143,892 KB
testcase_17 AC 176 ms
143,944 KB
testcase_18 AC 176 ms
143,936 KB
testcase_19 AC 756 ms
143,948 KB
testcase_20 AC 176 ms
143,864 KB
testcase_21 AC 523 ms
143,888 KB
testcase_22 AC 413 ms
143,948 KB
testcase_23 AC 767 ms
143,872 KB
testcase_24 AC 760 ms
144,096 KB
testcase_25 AC 132 ms
143,884 KB
testcase_26 AC 133 ms
143,868 KB
testcase_27 AC 130 ms
143,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
#define int long long

const int mod = 998244353;
const int max_fact = 9000001;

vector<long long> fact(max_fact);
vector<long long> fact_inve(max_fact,1);

void precompute() {
    fact[0] = 1;
    for (int i = 1; i < max_fact; ++i)
        fact[i] = (fact[i - 1] * i) % mod;

    fact_inve[max_fact - 1] = 921885471;
    for (int i = max_fact - 2; i > 0; --i)
        fact_inve[i] = (fact_inve[i + 1] * (i + 1)) % mod;
}

long long Comb(int a, int b) {
    if (a < b || b < 0)
        return 0;
    return (fact[a] * fact_inve[b] % mod * fact_inve[a - b]) % mod;
}

signed main() {
    int N, M, K;
    cin >> N >> M >> K;
    precompute();

    long long ans = 0;
    vector<long long> C(N + 1);
    vector<long long> CC(2 * N + 1);
    for (int i = 0; i <= N; ++i)
        C[i] = Comb(N, i);
    for (int i = 0; i <= 2 * N; ++i)
        CC[i] = Comb(i, K);

    for (int a = 0; a < N; ++a) {
        for (int b = 0; b < N; ++b) {
            if ((a + b) % 2 == K % 2)
                ans = (ans + (C[a] * C[b] % mod * Comb((N - a) * (N - b), M) % mod * CC[a + b]) % mod) % mod;
            else
                ans = (ans - (C[a] * C[b] % mod * Comb((N - a) * (N - b), M) % mod * CC[a + b]) % mod + mod) % mod;
        }
    }
    cout << ans << endl;
    return 0;
}
0