結果

問題 No.1836 Max Matrix
ユーザー ntudantuda
提出日時 2022-04-07 17:14:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 2,667 ms
コンパイル使用メモリ 81,152 KB
実行使用メモリ 59,520 KB
最終ジャッジ日時 2024-05-05 23:51:49
合計ジャッジ時間 3,920 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
51,584 KB
testcase_01 AC 51 ms
51,328 KB
testcase_02 AC 212 ms
59,392 KB
testcase_03 AC 220 ms
59,264 KB
testcase_04 AC 138 ms
59,008 KB
testcase_05 AC 183 ms
59,264 KB
testcase_06 AC 152 ms
59,264 KB
testcase_07 AC 211 ms
59,392 KB
testcase_08 AC 99 ms
59,008 KB
testcase_09 AC 216 ms
59,520 KB
testcase_10 AC 152 ms
58,880 KB
testcase_11 AC 43 ms
51,328 KB
testcase_12 AC 271 ms
59,520 KB
testcase_13 AC 117 ms
58,624 KB
testcase_14 AC 128 ms
58,752 KB
testcase_15 AC 61 ms
57,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W, M = map(int, input().split())
MOD = 998244353
ans = 0
sumh = 0
sumw = 0
for a in range(1, M + 1):
    tmph = pow(a, H, MOD) - sumh
    tmpw = pow(a, W, MOD) - sumw
    ans += tmph * tmpw
    ans %= MOD
    sumh += tmph
    sumh %= MOD
    sumw += tmpw
    sumw %= MOD
print(ans)
0