結果

問題 No.2380 Sylow P-subgroup
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-08-09 23:44:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 321 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 64,808 KB
最終ジャッジ日時 2024-08-09 23:44:33
合計ジャッジ時間 4,860 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,928 KB
testcase_01 AC 33 ms
52,092 KB
testcase_02 AC 33 ms
52,400 KB
testcase_03 AC 36 ms
57,788 KB
testcase_04 AC 33 ms
53,616 KB
testcase_05 AC 33 ms
51,956 KB
testcase_06 AC 33 ms
53,180 KB
testcase_07 AC 36 ms
57,488 KB
testcase_08 AC 36 ms
52,236 KB
testcase_09 AC 39 ms
56,776 KB
testcase_10 AC 38 ms
58,088 KB
testcase_11 AC 33 ms
53,304 KB
testcase_12 AC 34 ms
52,468 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2380

MOD = 998244353

def main():
    N, P = map(int, input().split())

    ans = 0
    p = P
    while p <= N:
        x = p
        while x <= N:
            ans += 1
            x += p
        p *= P
    
    print(pow(P, ans, MOD))











if __name__ == '__main__':
    main()
0