結果

問題 No.1809 Divide NCK
ユーザー ああいいああいい
提出日時 2022-01-14 22:57:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 643 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 73,880 KB
最終ジャッジ日時 2024-11-20 13:33:49
合計ジャッジ時間 4,511 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
72,292 KB
testcase_01 AC 76 ms
72,152 KB
testcase_02 AC 77 ms
73,492 KB
testcase_03 AC 75 ms
72,804 KB
testcase_04 AC 75 ms
71,820 KB
testcase_05 AC 78 ms
73,700 KB
testcase_06 AC 72 ms
73,880 KB
testcase_07 AC 72 ms
71,632 KB
testcase_08 AC 72 ms
72,780 KB
testcase_09 AC 72 ms
73,088 KB
testcase_10 AC 72 ms
73,512 KB
testcase_11 AC 71 ms
72,580 KB
testcase_12 AC 72 ms
72,080 KB
testcase_13 AC 72 ms
73,708 KB
testcase_14 AC 73 ms
72,444 KB
testcase_15 AC 72 ms
72,452 KB
testcase_16 AC 71 ms
71,692 KB
testcase_17 AC 74 ms
72,112 KB
testcase_18 AC 75 ms
72,860 KB
testcase_19 AC 73 ms
71,936 KB
testcase_20 AC 73 ms
71,956 KB
testcase_21 AC 74 ms
71,892 KB
testcase_22 AC 71 ms
72,964 KB
testcase_23 AC 74 ms
72,888 KB
testcase_24 AC 71 ms
73,188 KB
testcase_25 AC 71 ms
72,856 KB
testcase_26 AC 72 ms
73,296 KB
testcase_27 AC 71 ms
72,052 KB
testcase_28 AC 70 ms
71,980 KB
testcase_29 AC 71 ms
73,448 KB
testcase_30 AC 74 ms
72,828 KB
testcase_31 AC 71 ms
72,528 KB
testcase_32 AC 72 ms
72,208 KB
testcase_33 AC 72 ms
73,016 KB
testcase_34 AC 71 ms
73,800 KB
testcase_35 AC 72 ms
72,020 KB
testcase_36 AC 79 ms
73,168 KB
testcase_37 AC 73 ms
72,180 KB
testcase_38 AC 73 ms
72,256 KB
testcase_39 AC 76 ms
71,572 KB
testcase_40 AC 76 ms
72,904 KB
testcase_41 AC 74 ms
73,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

C =10 ** 6 + 1
dat = [0] * C
prime = dict()
for i in range(2,C):
    if dat[i] == 0:
        for j in range(2 * i,C,i):
            dat[j] = 1
        if M % i == 0:
            count = 0
            while M % i == 0:
                count += 1
                M //= i
            prime[i] = count
if M != 1:
    prime[M] = 1
_min = 10 ** 9
def count(t,p):
    ans = 0
    i = p
    while t // i:
        ans += t // i
        i *= p
    return ans
for p in prime:
    a = count(N,p)
    b = count(K,p)
    c = count(N-K,p)
    d = a - b - c
    e = d // prime[p]
    if e < _min:
        _min = e
print(_min)
0