結果

問題 No.847 Divisors of Power
ユーザー flippergoflippergo
提出日時 2024-10-29 13:44:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 742 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 87,908 KB
最終ジャッジ日時 2024-10-29 13:44:09
合計ジャッジ時間 3,632 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,216 KB
testcase_01 AC 37 ms
52,676 KB
testcase_02 AC 36 ms
52,072 KB
testcase_03 AC 36 ms
52,540 KB
testcase_04 AC 37 ms
53,688 KB
testcase_05 AC 36 ms
53,304 KB
testcase_06 AC 41 ms
58,848 KB
testcase_07 AC 40 ms
58,036 KB
testcase_08 AC 40 ms
59,024 KB
testcase_09 AC 41 ms
59,244 KB
testcase_10 AC 41 ms
59,724 KB
testcase_11 AC 56 ms
60,176 KB
testcase_12 AC 39 ms
59,176 KB
testcase_13 AC 44 ms
61,364 KB
testcase_14 AC 42 ms
60,064 KB
testcase_15 AC 168 ms
86,748 KB
testcase_16 AC 40 ms
58,436 KB
testcase_17 AC 40 ms
58,748 KB
testcase_18 AC 50 ms
64,084 KB
testcase_19 AC 78 ms
76,512 KB
testcase_20 AC 40 ms
57,980 KB
testcase_21 AC 133 ms
80,060 KB
testcase_22 AC 41 ms
58,252 KB
testcase_23 AC 40 ms
58,640 KB
testcase_24 AC 179 ms
87,908 KB
testcase_25 AC 40 ms
59,244 KB
testcase_26 AC 36 ms
52,704 KB
testcase_27 AC 40 ms
58,548 KB
testcase_28 AC 37 ms
53,136 KB
testcase_29 AC 37 ms
52,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K,M = map(int,input().split())
if N==1:
    print(1)
else:
    C = {}
    x = N
    for i in range(2,N+1):
        if i*i>N:break
        if x%i==0:
            cnt = 0
            while x%i==0:
                cnt += 1
                x //= i
            C[i] = cnt
    if x>1:
        C[x] = 1
    for p in C:
        C[p] *= K
    P = list(C.keys())
    ans = set()
    val = 1
    def dfs(i):
        global val
        p = P[i]
        for j in range(C[p]+1):
            val *= pow(p,j)
            if val <=M:
                ans.add(val)
                if i+1<len(P):
                    dfs(i+1)
                val //=pow(p,j)
            else:
                val //=pow(p,j)
                break
    dfs(0)
    print(len(ans))
0