結果

問題 No.1836 Max Matrix
ユーザー pluto77pluto77
提出日時 2022-02-18 16:11:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 483 ms / 2,000 ms
コード長 167 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 61,696 KB
最終ジャッジ日時 2024-06-29 08:04:56
合計ジャッジ時間 4,451 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,328 KB
testcase_01 AC 39 ms
51,456 KB
testcase_02 AC 343 ms
60,416 KB
testcase_03 AC 361 ms
61,184 KB
testcase_04 AC 212 ms
60,160 KB
testcase_05 AC 308 ms
60,928 KB
testcase_06 AC 242 ms
61,056 KB
testcase_07 AC 358 ms
60,800 KB
testcase_08 AC 139 ms
60,800 KB
testcase_09 AC 364 ms
60,672 KB
testcase_10 AC 243 ms
60,544 KB
testcase_11 AC 38 ms
51,328 KB
testcase_12 AC 483 ms
61,696 KB
testcase_13 AC 174 ms
58,880 KB
testcase_14 AC 195 ms
59,264 KB
testcase_15 AC 50 ms
58,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1836
mod=998244353
h,w,m=map(int,input().split())
res=0
for i in range(m):
 res+=(pow(i+1,h,mod)-pow(i,h,mod))*(pow(i+1,w,mod)-pow(i,w,mod))
 res%=mod
print(res)
0