結果

問題 No.847 Divisors of Power
ユーザー syunsukesyunsuke
提出日時 2020-09-18 18:33:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 579 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 118,264 KB
最終ジャッジ日時 2024-06-22 08:05:33
合計ジャッジ時間 2,907 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,328 KB
testcase_01 AC 42 ms
54,372 KB
testcase_02 AC 39 ms
54,276 KB
testcase_03 AC 37 ms
55,000 KB
testcase_04 AC 39 ms
55,804 KB
testcase_05 AC 40 ms
54,748 KB
testcase_06 AC 40 ms
59,692 KB
testcase_07 AC 42 ms
59,932 KB
testcase_08 AC 42 ms
60,448 KB
testcase_09 AC 44 ms
61,144 KB
testcase_10 AC 42 ms
61,328 KB
testcase_11 AC 48 ms
63,928 KB
testcase_12 AC 41 ms
60,568 KB
testcase_13 AC 53 ms
66,540 KB
testcase_14 AC 42 ms
62,208 KB
testcase_15 AC 190 ms
114,572 KB
testcase_16 AC 40 ms
60,928 KB
testcase_17 AC 42 ms
60,364 KB
testcase_18 AC 53 ms
67,088 KB
testcase_19 AC 54 ms
69,708 KB
testcase_20 AC 41 ms
60,800 KB
testcase_21 AC 97 ms
90,276 KB
testcase_22 AC 41 ms
60,320 KB
testcase_23 AC 39 ms
59,428 KB
testcase_24 AC 211 ms
118,264 KB
testcase_25 AC 39 ms
61,676 KB
testcase_26 AC 35 ms
54,892 KB
testcase_27 AC 38 ms
59,572 KB
testcase_28 AC 36 ms
54,852 KB
testcase_29 AC 35 ms
54,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K,M=map(int,input().split())

Y={}

for i in range(2,int(N**0.5)+1):
    while N%i==0:
        if i not in Y:
            Y[i]=1
            N//=i
        else:
            Y[i]+=1
            N//=i
if N!=1:
    Y[N]=1
#print(Y)

for k,v in Y.items():
    Y[k]=v*K
#print(Y)

Dic={}
Dic[1]=1
dic={}

import copy

for k,v in Y.items():
    #print(k,v)
    for x,y in Dic.items():
        for i in range(v+1):
            if x*(k**i)<=M:
                dic[x*(k**i)]=1
            else:
                break
    #print(dic)
    Dic=copy.deepcopy(dic)
    dic={}
print(len(Dic))
0