結果

問題 No.847 Divisors of Power
ユーザー tpynerivertpyneriver
提出日時 2019-08-10 20:48:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,204 ms / 2,000 ms
コード長 879 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 125,100 KB
最終ジャッジ日時 2024-10-07 03:13:42
合計ジャッジ時間 5,456 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,256 KB
testcase_01 AC 39 ms
54,364 KB
testcase_02 AC 52 ms
64,192 KB
testcase_03 AC 40 ms
54,352 KB
testcase_04 AC 65 ms
71,976 KB
testcase_05 AC 44 ms
60,152 KB
testcase_06 AC 44 ms
58,652 KB
testcase_07 AC 44 ms
59,104 KB
testcase_08 AC 42 ms
59,228 KB
testcase_09 AC 54 ms
64,144 KB
testcase_10 AC 56 ms
65,260 KB
testcase_11 AC 74 ms
74,168 KB
testcase_12 AC 43 ms
60,324 KB
testcase_13 AC 79 ms
77,208 KB
testcase_14 AC 61 ms
68,304 KB
testcase_15 AC 988 ms
115,744 KB
testcase_16 AC 42 ms
59,132 KB
testcase_17 AC 45 ms
60,228 KB
testcase_18 AC 77 ms
77,056 KB
testcase_19 AC 91 ms
76,960 KB
testcase_20 AC 42 ms
58,660 KB
testcase_21 AC 323 ms
88,220 KB
testcase_22 AC 41 ms
58,504 KB
testcase_23 AC 41 ms
59,164 KB
testcase_24 AC 1,204 ms
125,100 KB
testcase_25 AC 46 ms
60,552 KB
testcase_26 AC 39 ms
53,700 KB
testcase_27 AC 43 ms
58,400 KB
testcase_28 AC 41 ms
54,752 KB
testcase_29 AC 41 ms
54,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush as hp, heappop as hpp
def prf(m):
    pf = {}
    for i in range(2, int(m**0.5)+1):
        while m % i == 0:
            pf[i] = pf.get(i, 0)+1
            m //= i
    if m > 1:
        pf[m] = 1
    return pf

def calc(Num, L):
    res = 1
    for n, l in zip(Num, L):
        res *= pow(l, n)
    return res

N, K, M = map(int, input().split())
Pf = prf(N)
if not Pf:
    print(1)
else:
    Pkey, Pval = map(list, zip(*Pf.items()))
    pl = len(Pkey)
    
    cnt = 0
    Q = [(1, tuple(0 for _ in range(pl)))]
    used = set()
    while Q:
        x, pp = Q.pop()
        if x > M or any(a*K < b for a, b in zip(Pval, pp)) or pp in used:
            continue
        used.add(pp)
        cnt += 1
        for i in range(pl):
            lp = list(pp)
            lp[i] += 1
            Q.append((calc(lp, Pkey), tuple(lp)))
    
    print(cnt)     
0