結果

問題 No.1836 Max Matrix
ユーザー ああいいああいい
提出日時 2022-02-11 23:11:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 467 ms / 2,000 ms
コード長 196 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 62,752 KB
最終ジャッジ日時 2024-06-27 21:31:22
合計ジャッジ時間 4,421 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,316 KB
testcase_01 AC 36 ms
52,752 KB
testcase_02 AC 340 ms
60,940 KB
testcase_03 AC 359 ms
61,264 KB
testcase_04 AC 210 ms
61,820 KB
testcase_05 AC 304 ms
61,340 KB
testcase_06 AC 238 ms
61,424 KB
testcase_07 AC 358 ms
62,752 KB
testcase_08 AC 136 ms
60,672 KB
testcase_09 AC 361 ms
62,100 KB
testcase_10 AC 237 ms
61,676 KB
testcase_11 AC 34 ms
52,016 KB
testcase_12 AC 467 ms
61,924 KB
testcase_13 AC 170 ms
58,716 KB
testcase_14 AC 185 ms
60,376 KB
testcase_15 AC 48 ms
57,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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