結果

問題 No.847 Divisors of Power
ユーザー MineMine
提出日時 2020-09-09 22:35:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 780 bytes
コンパイル時間 616 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 164,736 KB
最終ジャッジ日時 2024-12-16 10:39:42
合計ジャッジ時間 36,852 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
59,136 KB
testcase_01 AC 132 ms
159,744 KB
testcase_02 AC 317 ms
83,072 KB
testcase_03 AC 45 ms
136,320 KB
testcase_04 TLE -
testcase_05 AC 1,373 ms
164,736 KB
testcase_06 AC 51 ms
64,256 KB
testcase_07 AC 48 ms
141,952 KB
testcase_08 AC 52 ms
65,920 KB
testcase_09 AC 482 ms
159,488 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 183 ms
84,096 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 50 ms
64,512 KB
testcase_17 AC 523 ms
157,952 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 46 ms
58,752 KB
testcase_21 TLE -
testcase_22 AC 48 ms
59,136 KB
testcase_23 AC 49 ms
58,880 KB
testcase_24 TLE -
testcase_25 AC 1,423 ms
79,488 KB
testcase_26 AC 45 ms
53,888 KB
testcase_27 AC 46 ms
59,136 KB
testcase_28 AC 148 ms
76,544 KB
testcase_29 AC 45 ms
134,656 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