結果

問題 No.847 Divisors of Power
ユーザー 👑 KazunKazun
提出日時 2021-03-09 13:56:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 1,027 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,680 KB
最終ジャッジ日時 2024-10-11 03:47:35
合計ジャッジ時間 2,843 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,608 KB
testcase_01 AC 36 ms
52,232 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 36 ms
52,736 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 40 ms
57,728 KB
testcase_07 AC 37 ms
52,480 KB
testcase_08 AC 42 ms
57,984 KB
testcase_09 AC 38 ms
52,500 KB
testcase_10 AC 37 ms
52,744 KB
testcase_11 AC 39 ms
53,120 KB
testcase_12 AC 36 ms
52,224 KB
testcase_13 AC 40 ms
57,728 KB
testcase_14 AC 37 ms
52,992 KB
testcase_15 AC 140 ms
76,288 KB
testcase_16 AC 38 ms
52,096 KB
testcase_17 AC 38 ms
52,224 KB
testcase_18 AC 44 ms
60,800 KB
testcase_19 AC 59 ms
69,504 KB
testcase_20 AC 40 ms
57,984 KB
testcase_21 AC 82 ms
76,164 KB
testcase_22 AC 39 ms
57,984 KB
testcase_23 AC 40 ms
58,240 KB
testcase_24 AC 106 ms
76,680 KB
testcase_25 AC 37 ms
51,840 KB
testcase_26 AC 37 ms
52,224 KB
testcase_27 AC 40 ms
58,140 KB
testcase_28 AC 37 ms
52,224 KB
testcase_29 AC 37 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#素因数分解
def Prime_Factorization(N):
    if N<0:
        R=[]
    else:
        R=[]

    N=abs(N)

    if N&1==0:
        C=0
        while N&1==0:
            N>>=1
            C+=1
        R.append([2,C])

    if N%3==0:
        C=0
        while N%3==0:
            N//=3
            C+=1
        R.append([3,C])

    k=5
    Flag=1
    while k*k<=N:
        if N%k==0:
            C=0
            while N%k==0:
                C+=1
                N//=k
            R.append([k,C])
        k+=2 if Flag else 4
        Flag^=1

    if N!=1:
        R.append([N,1])
    if not R:
        R.append([N,1])

    return R
#================================================
def f(i,prod):
    if i==P_len:
        return 1

    X=0
    q=prod
    p,e=P[i]
    for k in range(e+1):
        if q>M:
            break
        X+=f(i+1,q)
        q*=p
    return X
#================================================
N,K,M=map(int,input().split())

P=[[p,K*e] for p,e in Prime_Factorization(N) if p>1]
P_len=len(P)
print(f(0,1))
0