結果

問題 No.1809 Divide NCK
ユーザー KazunKazun
提出日時 2022-01-14 21:31:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 1,374 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 58,112 KB
最終ジャッジ日時 2024-11-20 07:57:22
合計ジャッジ時間 3,008 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
52,492 KB
testcase_04 AC 40 ms
51,712 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 40 ms
52,736 KB
testcase_10 AC 41 ms
52,352 KB
testcase_11 AC 39 ms
52,224 KB
testcase_12 AC 40 ms
52,736 KB
testcase_13 AC 43 ms
58,112 KB
testcase_14 AC 40 ms
51,712 KB
testcase_15 AC 40 ms
52,096 KB
testcase_16 AC 48 ms
57,472 KB
testcase_17 AC 42 ms
57,472 KB
testcase_18 AC 48 ms
57,984 KB
testcase_19 AC 49 ms
57,840 KB
testcase_20 AC 40 ms
52,224 KB
testcase_21 AC 40 ms
52,096 KB
testcase_22 AC 39 ms
52,736 KB
testcase_23 AC 39 ms
52,096 KB
testcase_24 AC 39 ms
51,968 KB
testcase_25 AC 39 ms
51,968 KB
testcase_26 AC 40 ms
52,352 KB
testcase_27 AC 39 ms
52,608 KB
testcase_28 AC 38 ms
52,096 KB
testcase_29 AC 45 ms
57,472 KB
testcase_30 AC 42 ms
57,728 KB
testcase_31 AC 40 ms
52,736 KB
testcase_32 AC 40 ms
52,096 KB
testcase_33 AC 43 ms
57,856 KB
testcase_34 AC 42 ms
57,216 KB
testcase_35 AC 43 ms
57,728 KB
testcase_36 AC 42 ms
58,112 KB
testcase_37 AC 40 ms
52,096 KB
testcase_38 AC 39 ms
52,096 KB
testcase_39 AC 39 ms
52,352 KB
testcase_40 AC 39 ms
52,096 KB
testcase_41 AC 39 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#素因数分解
def Prime_Factorization(N):
    if N==0:
        return [[0,1]]

    if N<0:
        R=[[-1,1]]
    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=0
    while k*k<=N:
        if N%k==0:
            C=0
            while N%k==0:
                C+=1
                N//=k
            R.append([k,C])
        k+=2+2*Flag
        Flag^=1

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

    return R

#根基
def Radical(N):
    """Nが素因数分解 N=p^a*q^b*r^c ...となるとき, pqr...を返す.

    N:非負整数
    """

    assert N>=0,"Nは非負整数ではない."
    a=1

    if N&1==0:
        a*=2
        while N&1==0:
            N>>=1

    if N%3==0:
        a*=3
        while N%3==0:
            N//=3

    k=5
    Flag=0
    while k*k<=N:
        if N%k==0:
            a*=k
            while N%k==0:
                N//=k
        k+=2+2*Flag
        Flag^=1

    if N>1:
        a*=N
    return a

def f(a,N):
    res=0
    while a:
        res+=a//N
        a//=N
    return res

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

Ans=float("inf")
for p,e in Prime_Factorization(M):
    Ans=min(Ans,(f(N,p)-f(N-K,p)-f(K,p))//e)

print(Ans)
0