結果

問題 No.847 Divisors of Power
ユーザー rlangevin
提出日時 2023-01-03 11:31:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 741 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 129,152 KB
最終ジャッジ日時 2024-11-27 01:48:21
合計ジャッジ時間 11,469 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23 TLE * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *

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])

    return arr

N, K, M = map(int, input().split())
L, A = [], []

for a, b in factorization(N):
    v, cnt = 1, 0
    while v <= M:
        v *= a
        cnt += 1
    cnt -= 1
    L.append(list(range(min(b * K, cnt) + 1)))
    A.append(a)

ans = 0
for tup in product(*L):
    v = 1
    for i in range(len(tup)):
        v *= pow(A[i], tup[i])
        if v > M:
            break
    if v <= M:
        ans += 1
print(ans)
0