結果

問題 No.2113 Distance Sequence 1.5
ユーザー roarisroaris
提出日時 2022-10-28 22:50:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 268 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 55,800 KB
最終ジャッジ日時 2024-07-06 02:04:19
合計ジャッジ時間 2,045 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,376 KB
testcase_01 AC 41 ms
55,180 KB
testcase_02 AC 42 ms
54,852 KB
testcase_03 AC 41 ms
54,024 KB
testcase_04 AC 40 ms
54,912 KB
testcase_05 AC 41 ms
54,432 KB
testcase_06 AC 40 ms
53,884 KB
testcase_07 WA -
testcase_08 AC 41 ms
54,300 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 41 ms
54,772 KB
testcase_15 WA -
testcase_16 AC 41 ms
54,556 KB
testcase_17 AC 40 ms
54,996 KB
testcase_18 AC 41 ms
55,324 KB
testcase_19 AC 40 ms
54,396 KB
testcase_20 WA -
testcase_21 AC 40 ms
53,848 KB
testcase_22 WA -
testcase_23 AC 40 ms
53,724 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, M, K = map(int, input().split())
ans = 0
MOD = 998244353

if M-K+1>0:
    ans += (M-K+1)*(pow(K, 2*N, MOD)-pow(K-1, 2*N, MOD))%MOD

if M-K+1<M:
    ans += pow(K-1, 2*N, MOD)
    ans %= MOD

print(ans)
0