結果

問題 No.1836 Max Matrix
ユーザー H3PO4H3PO4
提出日時 2022-02-11 21:38:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 489 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 61,824 KB
最終ジャッジ日時 2024-06-27 17:28:59
合計ジャッジ時間 4,500 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 350 ms
60,632 KB
testcase_03 AC 365 ms
60,928 KB
testcase_04 AC 213 ms
60,160 KB
testcase_05 AC 310 ms
61,440 KB
testcase_06 AC 243 ms
61,312 KB
testcase_07 AC 364 ms
61,056 KB
testcase_08 AC 140 ms
60,876 KB
testcase_09 AC 368 ms
60,948 KB
testcase_10 AC 246 ms
60,316 KB
testcase_11 AC 38 ms
51,840 KB
testcase_12 AC 489 ms
61,824 KB
testcase_13 AC 173 ms
59,136 KB
testcase_14 AC 194 ms
59,392 KB
testcase_15 AC 51 ms
58,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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