結果

問題 No.2380 Sylow P-subgroup
ユーザー hato336hato336
提出日時 2023-07-14 21:33:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 155 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 52,224 KB
最終ジャッジ日時 2024-09-16 06:23:58
合計ジャッジ時間 1,719 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

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

cnt = 0

for i in range(1,100):
    x = n // pow(p,i)
    cnt += x
    if x == 0:
        break
print(pow(p,cnt,998244353))
0