結果

問題 No.1836 Max Matrix
ユーザー rlangevinrlangevin
提出日時 2023-05-14 12:37:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 451 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 64,000 KB
最終ジャッジ日時 2024-05-07 10:06:04
合計ジャッジ時間 4,926 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,840 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 353 ms
62,592 KB
testcase_03 AC 376 ms
62,976 KB
testcase_04 AC 197 ms
62,336 KB
testcase_05 AC 291 ms
62,848 KB
testcase_06 AC 234 ms
62,720 KB
testcase_07 AC 341 ms
62,720 KB
testcase_08 AC 139 ms
62,720 KB
testcase_09 AC 346 ms
62,720 KB
testcase_10 AC 230 ms
62,208 KB
testcase_11 AC 37 ms
52,224 KB
testcase_12 AC 451 ms
64,000 KB
testcase_13 AC 168 ms
60,416 KB
testcase_14 AC 180 ms
60,672 KB
testcase_15 AC 52 ms
59,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
def f(k, n):
    return (pow(M - k, n, mod) - pow(M - k - 1, n, mod))%mod

H, W, M = map(int, input().split())
ans = 0
for i in range(M):
    ans += f(i, H) * f(i, W)
    ans %= mod
    
print(ans)
0