結果

問題 No.1836 Max Matrix
ユーザー AEnAEn
提出日時 2022-12-26 12:54:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 489 ms / 2,000 ms
コード長 189 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 63,096 KB
最終ジャッジ日時 2024-11-20 21:40:37
合計ジャッジ時間 4,635 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,484 KB
testcase_01 AC 45 ms
52,088 KB
testcase_02 AC 354 ms
61,096 KB
testcase_03 AC 367 ms
61,920 KB
testcase_04 AC 217 ms
61,288 KB
testcase_05 AC 314 ms
63,096 KB
testcase_06 AC 248 ms
61,952 KB
testcase_07 AC 368 ms
62,828 KB
testcase_08 AC 142 ms
60,920 KB
testcase_09 AC 371 ms
61,652 KB
testcase_10 AC 247 ms
61,352 KB
testcase_11 AC 39 ms
52,252 KB
testcase_12 AC 489 ms
62,112 KB
testcase_13 AC 177 ms
60,120 KB
testcase_14 AC 196 ms
60,552 KB
testcase_15 AC 50 ms
58,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W, M = map(int, input().split())

res = 0
mod = 998244353

for i in range(M):
    res += (pow(M-i,H,mod)-pow(M-i-1,H,mod))*(pow(M-i,W,mod)-pow(M-i-1,W,mod))%mod
    res %= mod
print(res)
0