結果

問題 No.2113 Distance Sequence 1.5
ユーザー ああいいああいい
提出日時 2022-10-31 12:44:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 53,488 KB
最終ジャッジ日時 2024-07-08 02:11:27
合計ジャッジ時間 1,909 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,616 KB
testcase_01 AC 31 ms
52,884 KB
testcase_02 AC 34 ms
51,696 KB
testcase_03 AC 33 ms
52,088 KB
testcase_04 AC 32 ms
52,468 KB
testcase_05 AC 31 ms
53,364 KB
testcase_06 AC 31 ms
52,264 KB
testcase_07 AC 30 ms
53,488 KB
testcase_08 AC 31 ms
53,000 KB
testcase_09 AC 31 ms
52,132 KB
testcase_10 AC 31 ms
51,824 KB
testcase_11 AC 31 ms
53,020 KB
testcase_12 AC 31 ms
52,372 KB
testcase_13 AC 35 ms
53,360 KB
testcase_14 AC 31 ms
52,344 KB
testcase_15 AC 31 ms
52,616 KB
testcase_16 AC 32 ms
52,276 KB
testcase_17 AC 33 ms
52,488 KB
testcase_18 AC 32 ms
52,836 KB
testcase_19 AC 31 ms
53,364 KB
testcase_20 AC 31 ms
53,216 KB
testcase_21 AC 33 ms
53,044 KB
testcase_22 AC 32 ms
52,836 KB
testcase_23 AC 31 ms
52,188 KB
testcase_24 AC 30 ms
51,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K = map(int,input().split())
N *= 2
P = 998244353

import sys
if M < K:
    print(pow(M,N,P))
    exit()

ans = 0
if K == 1:
    print(M%P)
    exit()
if K == 2:
    ans = (M - 1) * pow(2,N - 2,P) + M
    print(ans%P)
    exit()

inv = pow(K-2,P-2,P)
tmp = pow(K - 1,N,P) - 1
tmp = pow(K,N,P)-pow(K-1,N,P)
ans = tmp * (M - K) % P

t = pow(K,N,P)

ans += t
print(ans%P)

0