結果

問題 No.2932 えっえっ嘘嘘嘘待って待って待って???えマジで?ほんとに?マジでやばすぎなんだけど?えっおっほんとにこんなにDPしちゃっていいんですかい???マジでやばすぎなんだけど???
ユーザー hiro1729hiro1729
提出日時 2024-10-12 16:33:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 66,048 KB
最終ジャッジ日時 2024-10-12 16:33:37
合計ジャッジ時間 1,309 ms
ジャッジサーバーID
(参考情報)
judge / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,456 KB
testcase_01 AC 31 ms
51,584 KB
testcase_02 AC 40 ms
62,464 KB
testcase_03 AC 33 ms
51,712 KB
testcase_04 AC 31 ms
51,584 KB
testcase_05 AC 32 ms
51,840 KB
testcase_06 AC 39 ms
61,056 KB
testcase_07 AC 41 ms
61,312 KB
testcase_08 AC 43 ms
65,536 KB
testcase_09 AC 45 ms
66,048 KB
testcase_10 AC 45 ms
65,280 KB
testcase_11 AC 38 ms
51,840 KB
testcase_12 AC 43 ms
61,568 KB
testcase_13 AC 39 ms
61,824 KB
testcase_14 AC 42 ms
64,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353

def comb(x, y):
	ans = 1
	for i in range(1, y + 1):
		ans = ans * (x + 1 - i) * pow(i, -1, mod) % mod
	return ans

H, W, M = map(int, input().split())
print(comb(H + W - 2, H - 1) * comb(M, H + W - 1) * pow(M, (H - 1) * (W - 1), mod) % mod)
0