結果

問題 No.1836 Max Matrix
ユーザー 👑 rin204rin204
提出日時 2022-02-11 21:35:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 488 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 61,568 KB
最終ジャッジ日時 2024-06-27 17:21:59
合計ジャッジ時間 4,769 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,456 KB
testcase_01 AC 37 ms
51,456 KB
testcase_02 AC 346 ms
60,672 KB
testcase_03 AC 365 ms
60,928 KB
testcase_04 AC 213 ms
60,544 KB
testcase_05 AC 310 ms
61,056 KB
testcase_06 AC 243 ms
60,928 KB
testcase_07 AC 361 ms
61,440 KB
testcase_08 AC 143 ms
60,800 KB
testcase_09 AC 373 ms
61,440 KB
testcase_10 AC 248 ms
60,672 KB
testcase_11 AC 41 ms
51,840 KB
testcase_12 AC 488 ms
61,568 KB
testcase_13 AC 173 ms
59,520 KB
testcase_14 AC 193 ms
59,392 KB
testcase_15 AC 51 ms
58,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

h, w, m = map(int, input().split())
ans = 0

for min_ in range(1, m + 1):
    hh = pow(m - min_ + 1, h, MOD) - pow(m - min_, h, MOD)
    ww = pow(m - min_ + 1, w, MOD) - pow(m - min_, w, MOD)
    ans += hh * ww
    ans %= MOD
print(ans)
0