結果

問題 No.1809 Divide NCK
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-01-14 21:42:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 58,368 KB
最終ジャッジ日時 2024-11-20 08:52:18
合計ジャッジ時間 3,860 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
57,856 KB
testcase_01 AC 53 ms
57,984 KB
testcase_02 AC 52 ms
57,668 KB
testcase_03 AC 52 ms
57,472 KB
testcase_04 AC 51 ms
57,856 KB
testcase_05 AC 57 ms
57,728 KB
testcase_06 AC 52 ms
57,472 KB
testcase_07 AC 53 ms
57,472 KB
testcase_08 AC 53 ms
57,344 KB
testcase_09 AC 53 ms
57,984 KB
testcase_10 AC 52 ms
57,472 KB
testcase_11 AC 52 ms
57,856 KB
testcase_12 AC 51 ms
57,792 KB
testcase_13 AC 51 ms
57,088 KB
testcase_14 AC 52 ms
57,472 KB
testcase_15 AC 52 ms
57,728 KB
testcase_16 AC 49 ms
57,472 KB
testcase_17 AC 50 ms
57,472 KB
testcase_18 AC 51 ms
58,368 KB
testcase_19 AC 50 ms
57,856 KB
testcase_20 AC 51 ms
57,728 KB
testcase_21 AC 52 ms
57,728 KB
testcase_22 AC 52 ms
57,216 KB
testcase_23 AC 51 ms
57,088 KB
testcase_24 AC 52 ms
57,728 KB
testcase_25 AC 54 ms
57,856 KB
testcase_26 AC 51 ms
57,852 KB
testcase_27 AC 52 ms
57,472 KB
testcase_28 AC 52 ms
57,472 KB
testcase_29 AC 51 ms
57,472 KB
testcase_30 AC 51 ms
57,344 KB
testcase_31 AC 51 ms
57,216 KB
testcase_32 AC 52 ms
57,472 KB
testcase_33 AC 52 ms
57,472 KB
testcase_34 AC 52 ms
57,856 KB
testcase_35 AC 51 ms
57,472 KB
testcase_36 AC 53 ms
57,728 KB
testcase_37 AC 51 ms
57,472 KB
testcase_38 AC 53 ms
57,472 KB
testcase_39 AC 55 ms
57,472 KB
testcase_40 AC 53 ms
57,856 KB
testcase_41 AC 53 ms
57,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def cont(x,M):

    ret = 0
    div = M
    while x >= div:
        ret += x // div
        div *= M
    return ret

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

q = {}
for i in range(2,10**6+1):

    if M % i == 0:
        q[i] = 0
        while M % i == 0:
            M //= i
            q[i] += 1

if M != 1:
    q[M] = 1

ans = float("inf")
for mod in q:
    ans =  min( ans , (cont(N,mod) - cont(K,mod) - cont(N-K,mod)) // q[mod] )
print (ans)
0