結果

問題 No.847 Divisors of Power
ユーザー tails1434tails1434
提出日時 2020-01-05 20:06:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 755 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-05-02 10:29:01
合計ジャッジ時間 3,368 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,352 KB
testcase_01 AC 44 ms
52,096 KB
testcase_02 AC 44 ms
52,224 KB
testcase_03 AC 44 ms
52,096 KB
testcase_04 AC 44 ms
52,608 KB
testcase_05 AC 43 ms
52,352 KB
testcase_06 AC 46 ms
57,600 KB
testcase_07 AC 47 ms
57,344 KB
testcase_08 AC 47 ms
57,344 KB
testcase_09 AC 57 ms
57,600 KB
testcase_10 AC 48 ms
57,984 KB
testcase_11 AC 49 ms
58,368 KB
testcase_12 AC 48 ms
57,344 KB
testcase_13 AC 51 ms
58,880 KB
testcase_14 AC 49 ms
58,240 KB
testcase_15 AC 165 ms
77,056 KB
testcase_16 AC 49 ms
57,344 KB
testcase_17 AC 53 ms
57,344 KB
testcase_18 AC 62 ms
62,592 KB
testcase_19 AC 85 ms
73,088 KB
testcase_20 AC 47 ms
57,344 KB
testcase_21 AC 144 ms
78,080 KB
testcase_22 AC 48 ms
57,600 KB
testcase_23 AC 48 ms
57,472 KB
testcase_24 AC 162 ms
77,696 KB
testcase_25 AC 49 ms
57,728 KB
testcase_26 AC 44 ms
51,840 KB
testcase_27 AC 48 ms
57,344 KB
testcase_28 AC 43 ms
52,224 KB
testcase_29 AC 45 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 7)

def fctr1(n): 
    f=[]
    c=0
    r=int(n**0.5)
    for i in range(2,r+2):
        while n%i==0:
            c+=1
            n=n//i
        if c!=0:
            f.append([i,c])
            c=0
    if n!=1:
        f.append([n,1])
    return f

def main():
    N, K, M = map(int, input().split())
    d = fctr1(N)
    for i in range(len(d)):
        d[i][1] = d[i][1] * K

    def dfs(x, y):
        if x == len(d):
            return 1

        cnt = 0
        tmp = 1
        for i in range(d[x][1] + 1):
            tmp = y * (d[x][0] ** i)
            if tmp > M:
                break
            cnt += dfs(x + 1, tmp)

        return cnt

    print(dfs(0,1))
    


if __name__ == "__main__":
    main()
0