結果

問題 No.847 Divisors of Power
ユーザー NoneNone
提出日時 2021-03-04 17:46:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 88,040 KB
最終ジャッジ日時 2024-10-05 03:53:59
合計ジャッジ時間 2,672 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,608 KB
testcase_01 AC 36 ms
53,420 KB
testcase_02 AC 39 ms
54,788 KB
testcase_03 AC 40 ms
53,864 KB
testcase_04 AC 40 ms
60,212 KB
testcase_05 AC 36 ms
54,740 KB
testcase_06 AC 42 ms
60,732 KB
testcase_07 AC 36 ms
54,852 KB
testcase_08 AC 38 ms
60,488 KB
testcase_09 AC 38 ms
59,812 KB
testcase_10 AC 35 ms
55,704 KB
testcase_11 AC 42 ms
61,100 KB
testcase_12 AC 38 ms
60,036 KB
testcase_13 AC 37 ms
59,612 KB
testcase_14 AC 35 ms
54,920 KB
testcase_15 AC 75 ms
84,104 KB
testcase_16 AC 39 ms
59,380 KB
testcase_17 AC 38 ms
59,976 KB
testcase_18 AC 38 ms
59,976 KB
testcase_19 AC 40 ms
61,104 KB
testcase_20 AC 36 ms
59,008 KB
testcase_21 AC 50 ms
68,820 KB
testcase_22 AC 38 ms
59,212 KB
testcase_23 AC 39 ms
60,088 KB
testcase_24 AC 86 ms
88,040 KB
testcase_25 AC 37 ms
54,496 KB
testcase_26 AC 37 ms
53,988 KB
testcase_27 AC 38 ms
58,568 KB
testcase_28 AC 39 ms
54,660 KB
testcase_29 AC 35 ms
53,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime_factors(n):
    """ n=20 -> res=[2,2,5] """
    res=[]
    i=2
    while i*i<=n:
        if n%i: i+=1
        else:
            n//=i
            res.append(i)
    if n>1:
        res.append(n)
    return res

from collections import Counter

N,K,M=map(int, input().split())

D=Counter(prime_factors(N))
dp=dict()
dp[1]=1
for d, cnt in D.items():
    dp2=dp.copy()
    p=1
    for k in range(1,K*cnt+1):
        p*=d
        if p>M:break
        for key,val in dp.items():
            if key*p<=M:
                dp2[key*p]=1
    dp=dp2
print(len(dp))
0