結果

問題 No.847 Divisors of Power
ユーザー FromBooskaFromBooska
提出日時 2023-03-08 13:18:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,440 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 77,588 KB
最終ジャッジ日時 2024-09-18 02:31:30
合計ジャッジ時間 2,651 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,536 KB
testcase_01 AC 35 ms
52,068 KB
testcase_02 AC 36 ms
53,812 KB
testcase_03 AC 36 ms
54,068 KB
testcase_04 AC 35 ms
53,240 KB
testcase_05 AC 34 ms
52,780 KB
testcase_06 AC 37 ms
58,124 KB
testcase_07 AC 37 ms
57,936 KB
testcase_08 AC 38 ms
58,312 KB
testcase_09 AC 36 ms
58,592 KB
testcase_10 AC 42 ms
58,532 KB
testcase_11 AC 42 ms
59,300 KB
testcase_12 AC 39 ms
58,484 KB
testcase_13 AC 41 ms
60,680 KB
testcase_14 AC 38 ms
59,460 KB
testcase_15 AC 145 ms
77,588 KB
testcase_16 AC 37 ms
58,324 KB
testcase_17 AC 38 ms
58,224 KB
testcase_18 AC 47 ms
63,784 KB
testcase_19 AC 66 ms
74,568 KB
testcase_20 AC 39 ms
58,196 KB
testcase_21 AC 111 ms
77,288 KB
testcase_22 AC 36 ms
58,792 KB
testcase_23 AC 36 ms
58,312 KB
testcase_24 AC 143 ms
77,004 KB
testcase_25 AC 37 ms
58,136 KB
testcase_26 AC 33 ms
53,288 KB
testcase_27 AC 35 ms
58,588 KB
testcase_28 AC 33 ms
53,076 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# NのK乗は因数分解に大きすぎる
# しかしNの素因数で、それぞれの乗数がK倍されるだけ

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

N, K, M = map(int, input().split())
factors = factorization(N)
L = len(factors)
for i in range(L):
    factors[i][1] *= K
    
#print(L, factors)

# ここで公式解説見る、DFSで探索する
# なぜかといえば10**9でも素因数の数はマックス9個でしかない
# このdfsの実装は難しい
# dfs(乗数リスト、数)
# 乗数リストの長さで、素因数のどれを見終わって次がどれかが決まる
# 次の素因数で、その乗数までをforループ、掛け算結果がM以下なら再帰する

import sys
sys.setrecursionlimit(10**7)

def dfs(POWERLIST, num):
    global ans
    l = len(POWERLIST)
    if l == L and num <= M:
        ans += 1
        return
    for i in range(factors[l][1]+1):
        if num*(factors[l][0]**i) <= M:
            dfs(POWERLIST+[i], num*(factors[l][0]**i))
        else:
            # 枝刈り, breakではダメだ
            return

ans = 0
POWERLIST = []
dfs(POWERLIST, 1)
print(ans)
0