結果

問題 No.847 Divisors of Power
ユーザー MineMine
提出日時 2020-09-09 22:34:30
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 780 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-12-16 10:38:36
合計ジャッジ時間 43,382 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
16,000 KB
testcase_01 AC 33 ms
21,504 KB
testcase_02 AC 955 ms
17,700 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 28 ms
16,256 KB
testcase_07 AC 27 ms
17,700 KB
testcase_08 AC 27 ms
16,128 KB
testcase_09 AC 1,946 ms
21,760 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 55 ms
17,700 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 27 ms
16,256 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 26 ms
16,128 KB
testcase_21 TLE -
testcase_22 AC 27 ms
17,572 KB
testcase_23 AC 27 ms
10,752 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 25 ms
10,752 KB
testcase_27 AC 27 ms
10,752 KB
testcase_28 AC 321 ms
10,752 KB
testcase_29 AC 25 ms
16,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
sys.setrecursionlimit(10**6)

def factorization(n):
    arr = defaultdict(int)
    for i in range(2, int(-(-n**0.5//1))+1):
        while n % i == 0:
            arr[i] += 1
            n //= i
    if n != 1:
        arr[n] += 1
    return arr

def dfs(lst):
    global s
    num = 1
    for i in range(len(lst)):
        num *= keys[i]**lst[i]
        if num <= m:
            s.add(num)
            if lst[i] < values[i]:
                lst[i] += 1
                dfs(lst)
                lst[i] -= 1
        else:
            return 0

n, k, m = map(int, input().split())
if n == 1:
    print(1)
    exit()
f = factorization(n)
keys = list(f.keys())
values = [v*k for v in f.values()]
s = set()

dfs([0]*len(keys))
print(len(s))
0