結果

問題 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  
実行時間 191 ms / 2,000 ms
コード長 737 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 10,808 KB
実行使用メモリ 13,572 KB
最終ジャッジ日時 2023-09-10 23:05:59
合計ジャッジ時間 2,229 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,812 KB
testcase_01 AC 16 ms
7,748 KB
testcase_02 AC 16 ms
7,784 KB
testcase_03 AC 17 ms
7,864 KB
testcase_04 AC 16 ms
7,808 KB
testcase_05 AC 16 ms
7,860 KB
testcase_06 AC 17 ms
7,892 KB
testcase_07 AC 16 ms
7,896 KB
testcase_08 AC 18 ms
7,800 KB
testcase_09 AC 16 ms
7,724 KB
testcase_10 AC 17 ms
7,812 KB
testcase_11 AC 16 ms
7,760 KB
testcase_12 AC 17 ms
7,844 KB
testcase_13 AC 17 ms
7,748 KB
testcase_14 AC 16 ms
7,852 KB
testcase_15 AC 171 ms
12,476 KB
testcase_16 AC 16 ms
7,796 KB
testcase_17 AC 17 ms
7,812 KB
testcase_18 AC 17 ms
7,844 KB
testcase_19 AC 19 ms
8,216 KB
testcase_20 AC 18 ms
7,808 KB
testcase_21 AC 59 ms
9,644 KB
testcase_22 AC 19 ms
7,808 KB
testcase_23 AC 21 ms
7,904 KB
testcase_24 AC 191 ms
13,572 KB
testcase_25 AC 16 ms
7,792 KB
testcase_26 AC 16 ms
7,936 KB
testcase_27 AC 20 ms
7,900 KB
testcase_28 AC 16 ms
7,840 KB
testcase_29 AC 16 ms
7,808 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