結果

問題 No.847 Divisors of Power
ユーザー tails1434tails1434
提出日時 2020-01-05 20:06:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 755 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 77,612 KB
最終ジャッジ日時 2024-11-22 23:30:02
合計ジャッジ時間 2,963 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,660 KB
testcase_01 AC 40 ms
52,444 KB
testcase_02 AC 41 ms
53,296 KB
testcase_03 AC 38 ms
52,544 KB
testcase_04 AC 39 ms
54,200 KB
testcase_05 AC 39 ms
53,196 KB
testcase_06 AC 42 ms
58,660 KB
testcase_07 AC 42 ms
58,484 KB
testcase_08 AC 42 ms
58,840 KB
testcase_09 AC 48 ms
58,916 KB
testcase_10 AC 43 ms
58,648 KB
testcase_11 AC 43 ms
59,716 KB
testcase_12 AC 42 ms
58,732 KB
testcase_13 AC 45 ms
59,488 KB
testcase_14 AC 44 ms
58,612 KB
testcase_15 AC 138 ms
76,936 KB
testcase_16 AC 52 ms
57,880 KB
testcase_17 AC 43 ms
58,904 KB
testcase_18 AC 51 ms
64,372 KB
testcase_19 AC 72 ms
74,460 KB
testcase_20 AC 43 ms
58,660 KB
testcase_21 AC 124 ms
77,612 KB
testcase_22 AC 43 ms
58,452 KB
testcase_23 AC 42 ms
57,704 KB
testcase_24 AC 136 ms
77,144 KB
testcase_25 AC 42 ms
57,908 KB
testcase_26 AC 39 ms
52,336 KB
testcase_27 AC 42 ms
59,172 KB
testcase_28 AC 39 ms
52,520 KB
testcase_29 AC 40 ms
52,880 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