結果

問題 No.2351 Butterfly in Summer
ユーザー FromBooskaFromBooska
提出日時 2023-06-17 10:37:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 58,644 KB
最終ジャッジ日時 2024-06-25 02:17:06
合計ジャッジ時間 2,211 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,084 KB
testcase_01 AC 39 ms
52,216 KB
testcase_02 AC 40 ms
52,200 KB
testcase_03 AC 42 ms
58,616 KB
testcase_04 AC 38 ms
52,092 KB
testcase_05 AC 41 ms
58,120 KB
testcase_06 AC 42 ms
58,236 KB
testcase_07 AC 43 ms
58,240 KB
testcase_08 AC 42 ms
58,088 KB
testcase_09 AC 42 ms
57,992 KB
testcase_10 AC 43 ms
58,616 KB
testcase_11 AC 42 ms
57,516 KB
testcase_12 AC 42 ms
58,580 KB
testcase_13 AC 43 ms
57,912 KB
testcase_14 AC 43 ms
58,580 KB
testcase_15 AC 43 ms
57,760 KB
testcase_16 AC 42 ms
57,448 KB
testcase_17 AC 42 ms
58,244 KB
testcase_18 AC 44 ms
58,644 KB
testcase_19 AC 42 ms
57,900 KB
testcase_20 AC 42 ms
57,776 KB
testcase_21 AC 42 ms
58,136 KB
testcase_22 AC 39 ms
52,612 KB
testcase_23 AC 42 ms
57,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# mod バージョン

N, K = map(int, input().split())
mod = 998244353

K_inv = pow(K, mod-2, mod)
prob = 1
for i in range(N-2):
    prob *= K_inv
    prob %= mod
prob *= (K-1)
prob %= mod
prob *= K_inv
prob %= mod
prob *= N
prob %= mod
print(prob)
0