結果

問題 No.847 Divisors of Power
ユーザー rlangevinrlangevin
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
57,984 KB
testcase_01 AC 36 ms
128,896 KB
testcase_02 AC 36 ms
58,240 KB
testcase_03 AC 36 ms
129,152 KB
testcase_04 AC 45 ms
66,688 KB
testcase_05 AC 37 ms
52,864 KB
testcase_06 AC 40 ms
57,216 KB
testcase_07 AC 39 ms
57,728 KB
testcase_08 AC 39 ms
57,856 KB
testcase_09 AC 43 ms
58,112 KB
testcase_10 AC 44 ms
61,440 KB
testcase_11 AC 45 ms
61,696 KB
testcase_12 AC 38 ms
57,856 KB
testcase_13 AC 43 ms
61,568 KB
testcase_14 AC 42 ms
61,312 KB
testcase_15 TLE -
testcase_16 AC 42 ms
57,728 KB
testcase_17 AC 39 ms
57,984 KB
testcase_18 AC 45 ms
61,824 KB
testcase_19 AC 49 ms
66,944 KB
testcase_20 AC 41 ms
57,728 KB
testcase_21 TLE -
testcase_22 AC 41 ms
57,728 KB
testcase_23 AC 38 ms
57,984 KB
testcase_24 TLE -
testcase_25 AC 40 ms
58,496 KB
testcase_26 AC 36 ms
52,480 KB
testcase_27 AC 40 ms
57,728 KB
testcase_28 AC 38 ms
52,352 KB
testcase_29 AC 36 ms
128,000 KB
権限があれば一括ダウンロードができます

ソースコード

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