結果

問題 No.1836 Max Matrix
ユーザー aoymats1aoymats1
提出日時 2022-02-12 21:17:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 487 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 61,440 KB
最終ジャッジ日時 2024-06-29 00:13:38
合計ジャッジ時間 4,523 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,456 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 353 ms
60,544 KB
testcase_03 AC 362 ms
61,056 KB
testcase_04 AC 212 ms
60,416 KB
testcase_05 AC 312 ms
61,312 KB
testcase_06 AC 243 ms
60,672 KB
testcase_07 AC 359 ms
61,056 KB
testcase_08 AC 137 ms
61,056 KB
testcase_09 AC 366 ms
60,672 KB
testcase_10 AC 245 ms
60,160 KB
testcase_11 AC 36 ms
51,584 KB
testcase_12 AC 487 ms
61,440 KB
testcase_13 AC 172 ms
59,136 KB
testcase_14 AC 191 ms
59,136 KB
testcase_15 AC 47 ms
58,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

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

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