結果

問題 No.1809 Divide NCK
ユーザー H20H20
提出日時 2022-01-14 22:46:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 60,964 KB
最終ジャッジ日時 2024-11-20 13:11:17
合計ジャッジ時間 3,397 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,572 KB
testcase_01 AC 44 ms
54,268 KB
testcase_02 AC 42 ms
54,252 KB
testcase_03 AC 41 ms
54,564 KB
testcase_04 AC 41 ms
55,092 KB
testcase_05 AC 42 ms
54,548 KB
testcase_06 AC 42 ms
54,452 KB
testcase_07 AC 42 ms
54,668 KB
testcase_08 AC 41 ms
53,940 KB
testcase_09 AC 44 ms
54,376 KB
testcase_10 AC 43 ms
54,932 KB
testcase_11 AC 43 ms
54,532 KB
testcase_12 AC 43 ms
55,292 KB
testcase_13 AC 45 ms
59,328 KB
testcase_14 AC 42 ms
55,596 KB
testcase_15 AC 42 ms
53,936 KB
testcase_16 AC 52 ms
59,860 KB
testcase_17 AC 44 ms
59,224 KB
testcase_18 AC 52 ms
59,904 KB
testcase_19 AC 52 ms
59,832 KB
testcase_20 AC 51 ms
60,248 KB
testcase_21 AC 41 ms
54,784 KB
testcase_22 AC 41 ms
54,580 KB
testcase_23 AC 41 ms
54,664 KB
testcase_24 AC 42 ms
53,936 KB
testcase_25 AC 43 ms
54,540 KB
testcase_26 AC 41 ms
55,332 KB
testcase_27 AC 42 ms
54,596 KB
testcase_28 AC 41 ms
55,724 KB
testcase_29 AC 58 ms
59,348 KB
testcase_30 AC 43 ms
59,016 KB
testcase_31 AC 41 ms
53,808 KB
testcase_32 AC 42 ms
54,128 KB
testcase_33 AC 45 ms
59,356 KB
testcase_34 AC 44 ms
60,964 KB
testcase_35 AC 44 ms
59,696 KB
testcase_36 AC 44 ms
59,212 KB
testcase_37 AC 42 ms
54,108 KB
testcase_38 AC 43 ms
54,620 KB
testcase_39 AC 41 ms
54,716 KB
testcase_40 AC 42 ms
54,004 KB
testcase_41 AC 44 ms
54,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
def prime_factorize(n):
    a = []
    while n % 2 == 0:
        a.append(2)
        n //= 2
    f = 3
    while f * f <= n:
        if n % f == 0:
            a.append(f)
            n //= f
        else:
            f += 2
    if n != 1:
        a.append(n)
    return a

N,K,M = map(int, input().split())
CP = collections.Counter(prime_factorize(M))
L = []
for k,v in CP.items():
    L.append(k)

def func(N):
    C = collections.Counter()
    for l in L:
        i = 1
        while l**i<=N:
            C[l]+=N//(l**i)
            i+=1
    return C

CNK =  func(N)-func(N-K)-func(K)
ans = 10**20
for l in L:
    ans = min(ans,CNK[l]//CP[l])
print(ans)
0