結果

問題 No.1809 Divide NCK
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-01-14 21:40:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 410 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 59,740 KB
最終ジャッジ日時 2024-11-20 08:45:58
合計ジャッジ時間 3,893 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
57,728 KB
testcase_01 AC 58 ms
57,472 KB
testcase_02 AC 62 ms
57,856 KB
testcase_03 AC 58 ms
57,472 KB
testcase_04 WA -
testcase_05 AC 57 ms
57,728 KB
testcase_06 AC 58 ms
57,344 KB
testcase_07 WA -
testcase_08 AC 58 ms
57,856 KB
testcase_09 AC 58 ms
57,472 KB
testcase_10 AC 58 ms
57,728 KB
testcase_11 AC 61 ms
57,984 KB
testcase_12 AC 59 ms
57,388 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 61 ms
57,728 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 59 ms
57,856 KB
testcase_22 AC 60 ms
57,728 KB
testcase_23 AC 58 ms
57,088 KB
testcase_24 AC 59 ms
57,728 KB
testcase_25 AC 59 ms
57,344 KB
testcase_26 AC 59 ms
57,728 KB
testcase_27 AC 58 ms
57,088 KB
testcase_28 WA -
testcase_29 AC 59 ms
57,376 KB
testcase_30 WA -
testcase_31 AC 60 ms
57,984 KB
testcase_32 AC 59 ms
57,472 KB
testcase_33 AC 60 ms
57,856 KB
testcase_34 WA -
testcase_35 AC 58 ms
57,472 KB
testcase_36 WA -
testcase_37 AC 57 ms
57,728 KB
testcase_38 AC 59 ms
57,472 KB
testcase_39 AC 59 ms
57,856 KB
testcase_40 AC 58 ms
57,088 KB
testcase_41 AC 59 ms
57,984 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 = set()
for i in range(2,10**6+1):

    if M % i == 0:
        q.add(i)
        while M % i == 0:
            M //= i
if M != 1:
    q.add(i)


ans = float("inf")
for mod in q:

    ans =  min( ans , cont(N,mod) - cont(K,mod) - cont(N-K,mod) )
print (ans)
0