結果

問題 No.2932 えっえっ嘘嘘嘘待って待って待って???えマジで?ほんとに?マジでやばすぎなんだけど?えっおっほんとにこんなにDPしちゃっていいんですかい???マジでやばすぎなんだけど???
ユーザー SnowBeenDidingSnowBeenDiding
提出日時 2024-10-21 13:27:57
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 645 bytes
コンパイル時間 5,432 ms
コンパイル使用メモリ 308,392 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-21 13:28:04
合計ジャッジ時間 6,448 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 3 ms
6,820 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 3 ms
6,816 KB
testcase_11 AC 3 ms
6,820 KB
testcase_12 AC 3 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 3 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

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;

mint comb(int n, int k) {
    mint num = 1, den = 1;
    rep(i, 0, k) {
        num *= n - i;
        den *= i + 1;
    }
    return num / den;
}

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