結果

問題 No.2932 えっえっ嘘嘘嘘待って待って待って???えマジで?ほんとに?マジでやばすぎなんだけど?えっおっほんとにこんなにDPしちゃっていいんですかい???マジでやばすぎなんだけど???
ユーザー noriaokinoriaoki
提出日時 2024-10-17 22:25:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 478 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 59,184 KB
最終ジャッジ日時 2024-10-17 22:25:54
合計ジャッジ時間 1,828 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
52,484 KB
testcase_01 AC 32 ms
52,224 KB
testcase_02 AC 33 ms
59,184 KB
testcase_03 AC 30 ms
53,136 KB
testcase_04 AC 30 ms
53,800 KB
testcase_05 AC 30 ms
52,268 KB
testcase_06 AC 35 ms
58,536 KB
testcase_07 AC 40 ms
58,912 KB
testcase_08 AC 31 ms
52,704 KB
testcase_09 AC 32 ms
58,620 KB
testcase_10 AC 34 ms
57,740 KB
testcase_11 AC 29 ms
52,424 KB
testcase_12 AC 31 ms
57,668 KB
testcase_13 AC 33 ms
57,936 KB
testcase_14 AC 32 ms
58,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w, m = map(int, input().split())
mod = 998244353

if h + w > m + 1:
    exit(print(0))

def fact(a, b):
    ret = 1
    for i in range(a, b+1):
        ret *= i
        ret %= mod
    return ret

print(fact(m-h-w+2, m)*pow(fact(1, h+w-1), -1, mod)*fact(w, h+w-2)*pow(fact(1, h-1), -1, mod)*pow(m, h*w-(h+w-1), mod)%mod)
0