結果

問題 No.1836 Max Matrix
ユーザー kozykozy
提出日時 2022-02-11 21:39:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 491 ms / 2,000 ms
コード長 167 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 62,080 KB
最終ジャッジ日時 2024-06-27 17:31:49
合計ジャッジ時間 4,580 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 349 ms
61,056 KB
testcase_03 AC 363 ms
61,464 KB
testcase_04 AC 219 ms
60,652 KB
testcase_05 AC 312 ms
61,308 KB
testcase_06 AC 245 ms
61,184 KB
testcase_07 AC 367 ms
61,440 KB
testcase_08 AC 142 ms
60,928 KB
testcase_09 AC 370 ms
61,184 KB
testcase_10 AC 248 ms
60,672 KB
testcase_11 AC 38 ms
51,840 KB
testcase_12 AC 491 ms
62,080 KB
testcase_13 AC 175 ms
59,392 KB
testcase_14 AC 195 ms
59,264 KB
testcase_15 AC 53 ms
58,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,M=map(int,input().split())
ans=0
mod=998244353
for i in range(M,0,-1):
  ans+=(pow(i,H,mod)-pow(i-1,H,mod))*(pow(i,W,mod)-pow(i-1,W,mod))%mod
  ans%=mod
print(ans)
0