結果

問題 No.847 Divisors of Power
ユーザー vwxyzvwxyz
提出日時 2022-05-12 21:15:56
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 507 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 19,948 KB
最終ジャッジ日時 2024-07-20 15:35:39
合計ジャッジ時間 2,630 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
readline=sys.stdin.readline

N,K,M=map(int,readline().split())
fact=defaultdict(int)
for p in range(2,int(N**.5)+1):
    while N%p==0:
        N//=p
        fact[p]+=K
if N!=1:
    fact[N]+=K
queue=[1]
for p,e in fact.items():
    prev=queue
    queue=[]
    pow_p=1
    for c in range(e+1):
        if M<pow_p:
            break
        for x in prev:
            if x*pow_p<=M:
                queue.append(x*pow_p)
        pow_p*=p
ans=len(queue)
print(ans)
0