結果

問題 No.847 Divisors of Power
ユーザー rlangevinrlangevin
提出日時 2023-01-03 11:31:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 741 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 81,536 KB
最終ジャッジ日時 2024-05-05 07:07:12
合計ジャッジ時間 4,873 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,600 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 39 ms
52,864 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 50 ms
61,312 KB
testcase_05 AC 38 ms
53,248 KB
testcase_06 AC 41 ms
57,216 KB
testcase_07 AC 41 ms
57,728 KB
testcase_08 AC 46 ms
57,984 KB
testcase_09 AC 45 ms
58,240 KB
testcase_10 AC 51 ms
61,184 KB
testcase_11 AC 52 ms
61,568 KB
testcase_12 AC 43 ms
58,112 KB
testcase_13 AC 51 ms
61,568 KB
testcase_14 AC 51 ms
60,800 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

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