結果

問題 No.1836 Max Matrix
ユーザー SumitacchanSumitacchan
提出日時 2021-12-07 22:12:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 259 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 63,872 KB
最終ジャッジ日時 2024-07-08 01:39:07
合計ジャッジ時間 2,968 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 189 ms
63,232 KB
testcase_03 AC 199 ms
63,104 KB
testcase_04 AC 133 ms
61,824 KB
testcase_05 AC 179 ms
62,848 KB
testcase_06 AC 140 ms
61,952 KB
testcase_07 AC 203 ms
63,232 KB
testcase_08 AC 94 ms
61,184 KB
testcase_09 AC 203 ms
63,488 KB
testcase_10 AC 144 ms
62,208 KB
testcase_11 AC 39 ms
51,840 KB
testcase_12 AC 259 ms
63,872 KB
testcase_13 AC 114 ms
62,592 KB
testcase_14 AC 121 ms
62,976 KB
testcase_15 AC 51 ms
60,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

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

powH = [pow(i, H, mod) for i in range(M+1)]
powW = [pow(i, W, mod) for i in range(M+1)]

ans = 0
for i in range(1, M+1):
    ans += (powH[i] - powH[i-1] + mod) * (powW[i] - powW[i-1] + mod) 
    ans %= mod

print(ans)
0