結果

問題 No.2380 Sylow P-subgroup
ユーザー pitPpitP
提出日時 2023-07-14 22:00:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 167 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 53,724 KB
最終ジャッジ日時 2024-09-16 06:59:17
合計ジャッジ時間 1,563 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 40 ms
53,280 KB
testcase_02 AC 37 ms
52,488 KB
testcase_03 AC 37 ms
52,256 KB
testcase_04 AC 36 ms
52,128 KB
testcase_05 AC 37 ms
53,464 KB
testcase_06 AC 38 ms
52,028 KB
testcase_07 AC 37 ms
53,292 KB
testcase_08 AC 40 ms
52,616 KB
testcase_09 AC 39 ms
52,700 KB
testcase_10 AC 37 ms
52,296 KB
testcase_11 AC 38 ms
53,724 KB
testcase_12 AC 38 ms
52,864 KB
testcase_13 WA -
testcase_14 AC 38 ms
52,144 KB
testcase_15 AC 39 ms
52,748 KB
testcase_16 AC 37 ms
52,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
N, P = map(int, input().split())
P_ = P
e = 0
cnt = 0
while N >= P_:
    e += N // P_ * pow(2, cnt)
    P_ = P_ * P_
    cnt += 1
print(pow(P, e, MOD))
0