結果

問題 No.847 Divisors of Power
ユーザー yansi819yansi819
提出日時 2024-05-12 16:52:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 744 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 77,124 KB
最終ジャッジ日時 2024-05-12 16:53:03
合計ジャッジ時間 3,239 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,616 KB
testcase_01 AC 36 ms
53,484 KB
testcase_02 AC 37 ms
53,048 KB
testcase_03 AC 34 ms
52,920 KB
testcase_04 AC 35 ms
53,464 KB
testcase_05 AC 36 ms
52,964 KB
testcase_06 AC 37 ms
59,056 KB
testcase_07 AC 37 ms
57,592 KB
testcase_08 AC 38 ms
58,012 KB
testcase_09 AC 38 ms
59,100 KB
testcase_10 AC 37 ms
58,124 KB
testcase_11 AC 38 ms
59,036 KB
testcase_12 AC 38 ms
58,444 KB
testcase_13 AC 41 ms
60,360 KB
testcase_14 AC 41 ms
58,304 KB
testcase_15 AC 112 ms
76,828 KB
testcase_16 AC 39 ms
58,548 KB
testcase_17 AC 39 ms
59,644 KB
testcase_18 AC 46 ms
64,364 KB
testcase_19 AC 61 ms
72,704 KB
testcase_20 AC 37 ms
58,248 KB
testcase_21 AC 87 ms
76,536 KB
testcase_22 AC 39 ms
59,508 KB
testcase_23 AC 37 ms
58,768 KB
testcase_24 AC 113 ms
77,124 KB
testcase_25 AC 39 ms
59,180 KB
testcase_26 AC 36 ms
52,448 KB
testcase_27 AC 39 ms
58,224 KB
testcase_28 AC 36 ms
53,456 KB
testcase_29 AC 35 ms
52,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime_factors(N):
    res = {}
    for i in range(2, int(N ** 0.5) + 1):
        while N % i == 0:
            res.setdefault(i, 0)
            res[i] += 1
            N //= i
    if N != 1:
        res[N] = 1
    return res

N, K, M = map(int, input().split())
N_pf = prime_factors(N)
NK_pf = []
for p, q in N_pf.items():
    NK_pf.append((p, q * K))

import sys
sys.setrecursionlimit(10 ** 7)

def dfs(product, idx):
    global ans
    if idx == L:
        if product <= M:
            ans += 1
        return
    
    for i in range(NK_pf[idx][1] + 1):
        if product * pow(NK_pf[idx][0], i) <= M:
            dfs(product * pow(NK_pf[idx][0], i), idx + 1)
        else:
            break

L = len(NK_pf)
ans = 0
dfs(1, 0)
print(ans)
0