結果

問題 No.847 Divisors of Power
ユーザー yakeshibayakeshiba
提出日時 2020-09-26 04:34:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 216 ms / 2,000 ms
コード長 737 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 15,872 KB
最終ジャッジ日時 2024-06-28 13:54:52
合計ジャッジ時間 2,455 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 31 ms
10,496 KB
testcase_08 AC 33 ms
10,496 KB
testcase_09 AC 32 ms
10,624 KB
testcase_10 AC 31 ms
10,496 KB
testcase_11 AC 31 ms
10,368 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 32 ms
10,368 KB
testcase_14 AC 31 ms
10,496 KB
testcase_15 AC 193 ms
14,976 KB
testcase_16 AC 31 ms
10,624 KB
testcase_17 AC 31 ms
10,624 KB
testcase_18 AC 32 ms
10,624 KB
testcase_19 AC 35 ms
10,752 KB
testcase_20 AC 33 ms
10,624 KB
testcase_21 AC 79 ms
12,160 KB
testcase_22 AC 33 ms
10,496 KB
testcase_23 AC 36 ms
10,624 KB
testcase_24 AC 216 ms
15,872 KB
testcase_25 AC 30 ms
10,624 KB
testcase_26 AC 31 ms
10,624 KB
testcase_27 AC 35 ms
10,368 KB
testcase_28 AC 31 ms
10,368 KB
testcase_29 AC 31 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(10**9)

def factorize(n):
    fct = []  # prime factor
    b, e = 2, 0  # base, exponent
    while b * b <= n:
        while n % b == 0:
            n = n // b
            e = e + 1
        if e > 0:
            fct.append((b, e))
        b, e = b + 1, 0
    if n > 1:
        fct.append((n, 1))
    return fct

n, k, m = map(int,input().split())

div = factorize(n)
div = [(div[i][0], div[i][1]*k) for i in range(len(div))]

ans = []
def dfs(i, now):
    if i == len(div):
        ans.append(now)
        return
    for j in range(div[i][1]+1):
        if now*div[i][0]**j <= m:
            dfs(i+1, now*div[i][0]**j)
        else:
            break

dfs(0, 1)
print(len(ans))
0