結果

問題 No.2932 えっえっ嘘嘘嘘待って待って待って???えマジで?ほんとに?マジでやばすぎなんだけど?えっおっほんとにこんなにDPしちゃっていいんですかい???マジでやばすぎなんだけど???
ユーザー SnowBeenDidingSnowBeenDiding
提出日時 2024-10-21 13:26:43
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,280 bytes
コンパイル時間 4,959 ms
コンパイル使用メモリ 310,400 KB
実行使用メモリ 42,564 KB
最終ジャッジ日時 2024-10-21 13:26:53
合計ジャッジ時間 9,340 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
42,384 KB
testcase_01 AC 55 ms
42,444 KB
testcase_02 AC 54 ms
42,284 KB
testcase_03 AC 54 ms
42,400 KB
testcase_04 AC 55 ms
42,444 KB
testcase_05 AC 54 ms
42,380 KB
testcase_06 AC 56 ms
42,348 KB
testcase_07 AC 55 ms
42,356 KB
testcase_08 AC 56 ms
42,440 KB
testcase_09 AC 56 ms
42,356 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
#define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++)
using namespace atcoder;
using namespace std;

typedef long long ll;

using mint = modint998244353;

struct Comb {
    const long long MOD = 998244353;
    vector<mint> fact, ifact;
    int MAX_COM;
    Comb() {}
    Comb(int n) {
        MAX_COM = n; // ここでMAX入力を調整
        init(MOD, MAX_COM);
    }
    void init(long long MOD, long long MAX_COM) {
        int n = MAX_COM;
        assert(n < MOD);
        fact = vector<mint>(n + 1);
        ifact = vector<mint>(n + 1);
        fact[0] = 1;
        for (int i = 1; i <= n; ++i)
            fact[i] = fact[i - 1] * i;
        ifact[n] = fact[n].inv();
        for (int i = n; i >= 1; --i)
            ifact[i - 1] = ifact[i] * i;
    }
    mint operator()(long long n, long long k) {
        if (k < 0 || k > n)
            return 0;
        return fact[n] * ifact[k] * ifact[n - k];
    }
};
Comb comb(5000010);

int main() {
    int h, w, m;
    cin >> h >> w >> m;
    int len = h + w - 1;
    if (len > m) {
        cout << "0\n";
        return 0;
    }
    mint ans = comb(m, len);
    ans *= pow_mod(m, h * w - len, 998244353);
    ans *= comb(h + w - 2, h - 1);
    cout << ans.val() << endl;
}
0