結果

問題 No.847 Divisors of Power
ユーザー kekurekekure
提出日時 2019-07-08 12:38:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,067 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 82,688 KB
最終ジャッジ日時 2024-04-16 09:11:41
合計ジャッジ時間 4,764 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
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 #

# 問題 N^K の正の約数であって、M 以下のものの個数を求めてください。
# Nを素因数分解 、小さい因数の値について、何条あるか


def factoring(n):
    i = 2
    fact = []
    while True:
        if n < i * i:
            break
        if n % i == 0:
            fact.append(i)
            n //= i
        else:
            i += 1
    fact.append(n)
    print(fact)
    t = fact[0]
    fact_converted = []
    cnt = 0
    for x in fact:
        if t == x:
            cnt += 1
        else:
            fact_converted.append([t, cnt])
            t = x
            cnt = 1
    fact_converted.append([t, cnt])

    return fact_converted


def count(mass, fact, k, M, leng):
    if mass > M:
        return 0
    if k == leng:
        return 1
    cnt = 0
    for i in range(fact[k][1] + 1):
        cnt += count(mass * (fact[k][0] ** i), fact, k + 1, M, leng)

    return cnt


N, K, M = map(int, input().split())
fact = [[x[0], x[1] * K] for x in factoring(N)]
leng = len(fact)
print (count(1, fact, 0, M, leng))




0