結果

問題 No.1809 Divide NCK
ユーザー titiatitia
提出日時 2022-01-14 22:04:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-20 10:32:55
合計ジャッジ時間 5,106 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,624 KB
testcase_01 AC 167 ms
10,624 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 32 ms
10,624 KB
testcase_08 AC 32 ms
10,624 KB
testcase_09 AC 32 ms
10,624 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 138 ms
10,624 KB
testcase_12 AC 164 ms
10,624 KB
testcase_13 AC 59 ms
10,624 KB
testcase_14 AC 77 ms
10,624 KB
testcase_15 AC 39 ms
10,624 KB
testcase_16 AC 203 ms
10,624 KB
testcase_17 AC 37 ms
10,624 KB
testcase_18 AC 189 ms
10,624 KB
testcase_19 AC 206 ms
10,624 KB
testcase_20 AC 155 ms
10,624 KB
testcase_21 AC 134 ms
10,752 KB
testcase_22 AC 32 ms
10,752 KB
testcase_23 AC 32 ms
10,624 KB
testcase_24 AC 31 ms
10,624 KB
testcase_25 AC 31 ms
10,752 KB
testcase_26 AC 32 ms
10,624 KB
testcase_27 AC 31 ms
10,624 KB
testcase_28 AC 33 ms
10,624 KB
testcase_29 AC 164 ms
10,624 KB
testcase_30 AC 167 ms
10,752 KB
testcase_31 AC 53 ms
10,752 KB
testcase_32 AC 113 ms
10,624 KB
testcase_33 AC 116 ms
10,752 KB
testcase_34 AC 138 ms
10,624 KB
testcase_35 AC 121 ms
10,752 KB
testcase_36 AC 101 ms
10,752 KB
testcase_37 AC 148 ms
10,624 KB
testcase_38 AC 103 ms
10,624 KB
testcase_39 AC 172 ms
10,624 KB
testcase_40 AC 148 ms
10,624 KB
testcase_41 AC 104 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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


x=M
# 素因数分解
import math 
L=int(math.sqrt(x))

FACT=dict()

for i in range(2,L+2):
    while x%i==0:
        FACT[i]=FACT.get(i,0)+1
        x=x//i

if x!=1:
    FACT[x]=FACT.get(x,0)+1

LANS=1<<65

for f in FACT:
    ANS=0

    for i in range(1,65):
        if pow(f,i)>10**18:
            break
        ANS+=N//pow(f,i)

        ANS-=K//pow(f,i)
        ANS-=(N-K)//pow(f,i)

    LANS=min(LANS,ANS//FACT[f])

print(LANS)
    
0