結果

問題 No.1809 Divide NCK
ユーザー horitaka1999horitaka1999
提出日時 2022-01-15 12:27:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 1,052 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 61,200 KB
最終ジャッジ日時 2024-11-21 12:13:13
合計ジャッジ時間 3,337 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,584 KB
testcase_01 AC 46 ms
56,304 KB
testcase_02 AC 44 ms
54,640 KB
testcase_03 AC 42 ms
54,784 KB
testcase_04 AC 42 ms
54,456 KB
testcase_05 AC 43 ms
54,640 KB
testcase_06 AC 43 ms
54,480 KB
testcase_07 AC 43 ms
55,252 KB
testcase_08 AC 43 ms
55,840 KB
testcase_09 AC 47 ms
55,904 KB
testcase_10 AC 42 ms
55,128 KB
testcase_11 AC 44 ms
54,384 KB
testcase_12 AC 42 ms
55,200 KB
testcase_13 AC 48 ms
60,076 KB
testcase_14 AC 44 ms
54,888 KB
testcase_15 AC 45 ms
60,312 KB
testcase_16 AC 58 ms
60,608 KB
testcase_17 AC 46 ms
60,248 KB
testcase_18 AC 59 ms
60,632 KB
testcase_19 AC 59 ms
59,484 KB
testcase_20 AC 46 ms
60,008 KB
testcase_21 AC 44 ms
55,692 KB
testcase_22 AC 43 ms
54,772 KB
testcase_23 AC 45 ms
54,220 KB
testcase_24 AC 43 ms
54,184 KB
testcase_25 AC 44 ms
54,980 KB
testcase_26 AC 43 ms
54,396 KB
testcase_27 AC 43 ms
55,420 KB
testcase_28 AC 44 ms
54,396 KB
testcase_29 AC 53 ms
59,672 KB
testcase_30 AC 46 ms
59,664 KB
testcase_31 AC 46 ms
59,276 KB
testcase_32 AC 44 ms
55,204 KB
testcase_33 AC 47 ms
60,528 KB
testcase_34 AC 47 ms
60,080 KB
testcase_35 AC 46 ms
61,200 KB
testcase_36 AC 46 ms
59,600 KB
testcase_37 AC 44 ms
54,584 KB
testcase_38 AC 43 ms
54,516 KB
testcase_39 AC 44 ms
55,680 KB
testcase_40 AC 45 ms
55,300 KB
testcase_41 AC 44 ms
56,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N,K,M = map(int,input().split())
class get_prime():#使うたびにクラスの定義が必要。self.revの使い回しNG
    def __init__(self):
        self.rev = []
    def prime(self,n):
        if n == 1:
            return self.rev
        for i in range(2,int(n**0.5)+1):
            if n % i == 0:
                self.rev.append(i)
                self.prime(int(n/i))
                break
        else:
            self.rev.append(n)
        return self.rev
gp = get_prime()
mp = gp.prime(M)
pdic = defaultdict(int)
for p in mp:
    pdic[p] += 1

def f(l,r,x,p):
    al = (l + pow(p,x) -1) // pow(p,x)
    al = max(al,1)
    ar = r //pow(p,x)
    if ar >= 1 and al <= ar:
        return ar - al + 1
    else:
        return 0
def g(l,r,p):
    x = 1
    res = 0
    while pow(p,x) <= r:
        res += f(l,r,x,p)
        x += 1
    return res
INF = float('inf')
ans = INF
for p in pdic.keys():
    up = g(N-K+1,N,p)
    down = g(1,K,p)
    tmp = (up - down) // pdic[p]
    ans = min(ans,tmp)
print(ans)

0