結果

問題 No.2351 Butterfly in Summer
ユーザー n_nan_na
提出日時 2023-06-17 01:06:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 134 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 72,272 KB
最終ジャッジ日時 2024-06-24 17:57:48
合計ジャッジ時間 2,580 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,584 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 33 ms
51,584 KB
testcase_03 AC 82 ms
72,104 KB
testcase_04 AC 34 ms
51,840 KB
testcase_05 AC 35 ms
52,352 KB
testcase_06 AC 92 ms
72,064 KB
testcase_07 AC 84 ms
72,192 KB
testcase_08 AC 90 ms
72,272 KB
testcase_09 AC 88 ms
71,544 KB
testcase_10 AC 69 ms
71,320 KB
testcase_11 AC 35 ms
52,096 KB
testcase_12 AC 37 ms
53,376 KB
testcase_13 AC 82 ms
71,808 KB
testcase_14 AC 80 ms
71,592 KB
testcase_15 AC 81 ms
72,200 KB
testcase_16 AC 41 ms
57,344 KB
testcase_17 AC 42 ms
58,240 KB
testcase_18 AC 58 ms
71,404 KB
testcase_19 AC 39 ms
56,704 KB
testcase_20 AC 65 ms
71,496 KB
testcase_21 AC 65 ms
71,140 KB
testcase_22 AC 35 ms
51,840 KB
testcase_23 AC 56 ms
71,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

N,K = map(int,input().split())
top = (N%MOD*K%MOD*(K-1)%MOD)
bottom = pow(pow(K,N),MOD-2,MOD)

print(top*bottom%MOD)
0