結果

問題 No.2351 Butterfly in Summer
ユーザー MottchanMottchan
提出日時 2023-06-16 21:42:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 137 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 72,324 KB
最終ジャッジ日時 2024-06-24 13:31:03
合計ジャッジ時間 2,515 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,276 KB
testcase_01 AC 37 ms
52,888 KB
testcase_02 AC 37 ms
52,556 KB
testcase_03 AC 85 ms
72,092 KB
testcase_04 AC 41 ms
51,820 KB
testcase_05 AC 38 ms
52,572 KB
testcase_06 AC 94 ms
71,752 KB
testcase_07 AC 90 ms
72,108 KB
testcase_08 AC 94 ms
72,256 KB
testcase_09 AC 91 ms
71,896 KB
testcase_10 AC 74 ms
71,316 KB
testcase_11 AC 37 ms
52,580 KB
testcase_12 AC 39 ms
54,224 KB
testcase_13 AC 85 ms
71,680 KB
testcase_14 AC 83 ms
71,804 KB
testcase_15 AC 86 ms
72,324 KB
testcase_16 AC 43 ms
57,748 KB
testcase_17 AC 45 ms
58,576 KB
testcase_18 AC 60 ms
70,912 KB
testcase_19 AC 44 ms
56,840 KB
testcase_20 AC 68 ms
71,608 KB
testcase_21 AC 67 ms
71,180 KB
testcase_22 AC 37 ms
54,180 KB
testcase_23 AC 61 ms
70,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())

cnt=n*k*(k-1)
all=k**n

mod = 998244353
denominator = pow(all, mod-2, mod)
print(cnt * denominator % mod)
0