結果

問題 No.2380 Sylow P-subgroup
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-07-23 17:30:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 57,176 KB
最終ジャッジ日時 2024-09-24 19:02:47
合計ジャッジ時間 1,851 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
56,276 KB
testcase_01 AC 46 ms
55,496 KB
testcase_02 AC 46 ms
56,588 KB
testcase_03 AC 45 ms
56,792 KB
testcase_04 AC 45 ms
55,292 KB
testcase_05 AC 45 ms
55,416 KB
testcase_06 AC 46 ms
55,520 KB
testcase_07 AC 47 ms
56,808 KB
testcase_08 AC 45 ms
55,684 KB
testcase_09 AC 46 ms
55,928 KB
testcase_10 AC 47 ms
57,000 KB
testcase_11 AC 46 ms
57,176 KB
testcase_12 AC 46 ms
56,080 KB
testcase_13 AC 49 ms
57,112 KB
testcase_14 AC 45 ms
55,476 KB
testcase_15 AC 45 ms
55,900 KB
testcase_16 AC 46 ms
56,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N,P = map(int,input().split())
mod = 998244353
ans = 0
res = P
while res <= N:
    ans += N//res
    res *= P
print(pow(P,ans,mod))
0