結果

問題 No.1809 Divide NCK
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-01-14 22:46:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 526 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 59,868 KB
最終ジャッジ日時 2024-11-20 13:10:54
合計ジャッジ時間 3,349 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,988 KB
testcase_01 AC 56 ms
58,240 KB
testcase_02 AC 38 ms
53,664 KB
testcase_03 AC 38 ms
52,628 KB
testcase_04 AC 38 ms
52,816 KB
testcase_05 AC 38 ms
52,672 KB
testcase_06 AC 37 ms
53,852 KB
testcase_07 AC 39 ms
52,800 KB
testcase_08 AC 39 ms
52,936 KB
testcase_09 AC 38 ms
52,536 KB
testcase_10 AC 38 ms
52,884 KB
testcase_11 AC 54 ms
58,512 KB
testcase_12 AC 57 ms
58,712 KB
testcase_13 AC 45 ms
59,540 KB
testcase_14 AC 46 ms
58,904 KB
testcase_15 AC 41 ms
58,120 KB
testcase_16 AC 55 ms
58,820 KB
testcase_17 AC 40 ms
58,432 KB
testcase_18 AC 52 ms
59,020 KB
testcase_19 AC 54 ms
58,692 KB
testcase_20 AC 52 ms
59,376 KB
testcase_21 AC 52 ms
58,212 KB
testcase_22 AC 38 ms
52,956 KB
testcase_23 AC 38 ms
53,248 KB
testcase_24 AC 37 ms
52,696 KB
testcase_25 AC 38 ms
52,592 KB
testcase_26 AC 38 ms
53,628 KB
testcase_27 AC 38 ms
53,140 KB
testcase_28 AC 39 ms
52,256 KB
testcase_29 AC 53 ms
58,888 KB
testcase_30 AC 56 ms
59,028 KB
testcase_31 AC 43 ms
58,040 KB
testcase_32 AC 51 ms
57,920 KB
testcase_33 AC 49 ms
58,192 KB
testcase_34 AC 53 ms
59,868 KB
testcase_35 AC 52 ms
57,916 KB
testcase_36 AC 50 ms
58,744 KB
testcase_37 AC 55 ms
58,500 KB
testcase_38 AC 50 ms
59,240 KB
testcase_39 AC 55 ms
59,144 KB
testcase_40 AC 56 ms
58,388 KB
testcase_41 AC 48 ms
58,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k,m = map(int,input().split())

now = m


def count_divs(x,y):
    count = 0
    now = x
    while now <= y:
        count += y//now
        now *= x
    return count

ans = 10**20
for i in range(2,int(m**0.5)+1):
    if now%i:
        continue

    div = 0
    while now%i == 0:
        now //= i
        div += 1
    
    nc = count_divs(i,n)
    kc = count_divs(i,k) + count_divs(i,n-k)
    ans = min(ans,(nc-kc)//div)

if now != 1:
    ans = min(ans,count_divs(now,n)-count_divs(now,k)-count_divs(now,n-k))
print(ans)


0