結果

問題 No.1809 Divide NCK
ユーザー mkawa2mkawa2
提出日時 2022-01-14 21:48:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 1,485 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 87,192 KB
実行使用メモリ 75,956 KB
最終ジャッジ日時 2023-08-12 18:58:53
合計ジャッジ時間 4,888 ms
ジャッジサーバーID
(参考情報)
judge2 / judge7
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,696 KB
testcase_01 AC 72 ms
71,420 KB
testcase_02 AC 73 ms
71,492 KB
testcase_03 AC 72 ms
71,776 KB
testcase_04 AC 73 ms
71,664 KB
testcase_05 AC 73 ms
71,424 KB
testcase_06 AC 72 ms
71,444 KB
testcase_07 AC 71 ms
71,232 KB
testcase_08 AC 72 ms
71,420 KB
testcase_09 AC 72 ms
71,416 KB
testcase_10 AC 74 ms
71,388 KB
testcase_11 AC 72 ms
71,488 KB
testcase_12 AC 71 ms
71,492 KB
testcase_13 AC 74 ms
75,620 KB
testcase_14 AC 72 ms
71,316 KB
testcase_15 AC 72 ms
71,376 KB
testcase_16 AC 82 ms
75,844 KB
testcase_17 AC 75 ms
75,668 KB
testcase_18 AC 83 ms
75,756 KB
testcase_19 AC 83 ms
75,772 KB
testcase_20 AC 75 ms
75,568 KB
testcase_21 AC 71 ms
71,376 KB
testcase_22 AC 71 ms
71,420 KB
testcase_23 AC 70 ms
71,684 KB
testcase_24 AC 71 ms
71,504 KB
testcase_25 AC 71 ms
71,240 KB
testcase_26 AC 71 ms
71,332 KB
testcase_27 AC 70 ms
71,628 KB
testcase_28 AC 70 ms
71,504 KB
testcase_29 AC 78 ms
75,956 KB
testcase_30 AC 74 ms
75,516 KB
testcase_31 AC 72 ms
71,632 KB
testcase_32 AC 72 ms
71,444 KB
testcase_33 AC 75 ms
75,572 KB
testcase_34 AC 73 ms
75,652 KB
testcase_35 AC 74 ms
75,720 KB
testcase_36 AC 75 ms
75,428 KB
testcase_37 AC 73 ms
71,472 KB
testcase_38 AC 72 ms
71,456 KB
testcase_39 AC 71 ms
71,332 KB
testcase_40 AC 72 ms
71,368 KB
testcase_41 AC 72 ms
71,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 18446744073709551615
# inf = 4294967295
md = 10**9+7
# md = 998244353

def prime_factorization(a):
    pp, ee = [], []
    if a & 1 == 0:
        pp += [2]
        ee += [0]
        while a & 1 == 0:
            a >>= 1
            ee[-1] += 1
    p = 3
    while p**2 <= a:
        if a%p == 0:
            pp += [p]
            ee += [0]
            while a%p == 0:
                a //= p
                ee[-1] += 1
        p += 2
    if a > 1:
        pp += [a]
        ee += [1]
    return pp, ee

# a!にmが何個入っているか
def cnt(a, p):
    d = p
    res = 0
    while d <= a:
        res += a//d
        d *= p
    return res

n, k, m = LI()
pp, ee = prime_factorization(m)
# pDB(pp,ee)

ans = inf
for p, e in zip(pp, ee):
    cur = cnt(n, p)-cnt(n-k, p)-cnt(k, p)
    ans = min(ans, cur//e)
print(ans)
0