結果

問題 No.2380 Sylow P-subgroup
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-07-23 17:27:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 286 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 81,872 KB
実行使用メモリ 57,172 KB
最終ジャッジ日時 2024-09-24 18:58:25
合計ジャッジ時間 1,890 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
55,372 KB
testcase_01 AC 43 ms
55,480 KB
testcase_02 AC 43 ms
56,872 KB
testcase_03 AC 44 ms
56,836 KB
testcase_04 AC 44 ms
55,560 KB
testcase_05 AC 44 ms
56,800 KB
testcase_06 AC 44 ms
56,788 KB
testcase_07 AC 46 ms
56,272 KB
testcase_08 AC 44 ms
56,496 KB
testcase_09 AC 44 ms
57,120 KB
testcase_10 AC 43 ms
56,348 KB
testcase_11 AC 44 ms
56,864 KB
testcase_12 AC 44 ms
55,600 KB
testcase_13 WA -
testcase_14 AC 45 ms
57,172 KB
testcase_15 AC 43 ms
55,820 KB
testcase_16 AC 42 ms
55,704 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
    ans %= mod-2
print(pow(P,ans,mod))
0