結果

問題 No.1836 Max Matrix
ユーザー 👑 KazunKazun
提出日時 2022-02-12 00:23:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 491 ms / 2,000 ms
コード長 179 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 62,828 KB
最終ジャッジ日時 2024-06-27 23:16:29
合計ジャッジ時間 4,896 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,092 KB
testcase_01 AC 39 ms
51,872 KB
testcase_02 AC 351 ms
61,240 KB
testcase_03 AC 368 ms
62,828 KB
testcase_04 AC 214 ms
61,336 KB
testcase_05 AC 312 ms
61,064 KB
testcase_06 AC 246 ms
61,612 KB
testcase_07 AC 363 ms
62,568 KB
testcase_08 AC 141 ms
62,044 KB
testcase_09 AC 370 ms
61,956 KB
testcase_10 AC 249 ms
60,500 KB
testcase_11 AC 38 ms
52,192 KB
testcase_12 AC 491 ms
62,704 KB
testcase_13 AC 176 ms
59,828 KB
testcase_14 AC 196 ms
60,160 KB
testcase_15 AC 51 ms
59,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

Mod=998244353

X=0
for m in range(1,M+1):
    A=pow(M-m+1,H,Mod)-pow(M-m,H,Mod)
    B=pow(M-m+1,W,Mod)-pow(M-m,W,Mod)
    X+=A*B; X%=Mod

print(X)
0