結果

問題 No.2380 Sylow P-subgroup
ユーザー flygonflygon
提出日時 2023-07-14 21:24:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 373 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 54,656 KB
最終ジャッジ日時 2024-09-16 06:12:31
合計ジャッジ時間 1,382 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,272 KB
testcase_01 AC 38 ms
54,144 KB
testcase_02 AC 40 ms
54,656 KB
testcase_03 AC 44 ms
53,888 KB
testcase_04 AC 37 ms
54,272 KB
testcase_05 AC 38 ms
54,144 KB
testcase_06 AC 36 ms
54,168 KB
testcase_07 AC 37 ms
54,272 KB
testcase_08 AC 35 ms
54,528 KB
testcase_09 AC 36 ms
54,272 KB
testcase_10 AC 38 ms
54,044 KB
testcase_11 AC 36 ms
53,888 KB
testcase_12 AC 37 ms
54,400 KB
testcase_13 WA -
testcase_14 AC 38 ms
54,016 KB
testcase_15 AC 38 ms
54,272 KB
testcase_16 AC 38 ms
54,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

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

now = p
ans = 0
while now <= n:
    ans += n//now
    now *= p
    ans %= mod

print(pow(p,ans, mod))
0