結果

問題 No.847 Divisors of Power
コンテスト
ユーザー rlangevin
提出日時 2023-01-03 11:31:28
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
TLE  
実行時間 -
コード長 741 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 316 ms
コンパイル使用メモリ 85,452 KB
実行使用メモリ 61,824 KB
最終ジャッジ日時 2026-05-21 08:40:03
合計ジャッジ時間 5,048 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample -- * 4
other AC * 15 TLE * 1 -- * 10
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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