結果

問題 No.1809 Divide NCK
ユーザー MasKoaTSMasKoaTS
提出日時 2021-12-22 11:16:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 543 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 59,100 KB
最終ジャッジ日時 2024-11-14 10:52:12
合計ジャッジ時間 3,128 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,284 KB
testcase_01 AC 58 ms
58,540 KB
testcase_02 AC 38 ms
52,568 KB
testcase_03 AC 37 ms
53,420 KB
testcase_04 AC 37 ms
52,448 KB
testcase_05 AC 37 ms
53,552 KB
testcase_06 AC 38 ms
52,928 KB
testcase_07 AC 38 ms
53,332 KB
testcase_08 AC 38 ms
52,784 KB
testcase_09 AC 39 ms
54,308 KB
testcase_10 AC 38 ms
52,760 KB
testcase_11 AC 51 ms
57,912 KB
testcase_12 AC 54 ms
58,936 KB
testcase_13 AC 43 ms
58,184 KB
testcase_14 AC 44 ms
58,620 KB
testcase_15 AC 41 ms
58,108 KB
testcase_16 AC 54 ms
59,100 KB
testcase_17 AC 40 ms
58,116 KB
testcase_18 AC 54 ms
58,104 KB
testcase_19 AC 54 ms
58,512 KB
testcase_20 AC 52 ms
57,720 KB
testcase_21 AC 50 ms
59,056 KB
testcase_22 AC 37 ms
52,784 KB
testcase_23 AC 38 ms
53,108 KB
testcase_24 AC 39 ms
52,260 KB
testcase_25 AC 39 ms
53,680 KB
testcase_26 AC 38 ms
53,140 KB
testcase_27 AC 38 ms
53,380 KB
testcase_28 AC 39 ms
52,400 KB
testcase_29 AC 51 ms
58,432 KB
testcase_30 AC 53 ms
59,032 KB
testcase_31 AC 43 ms
58,072 KB
testcase_32 AC 49 ms
58,976 KB
testcase_33 AC 46 ms
58,164 KB
testcase_34 AC 49 ms
58,240 KB
testcase_35 AC 49 ms
58,756 KB
testcase_36 AC 47 ms
58,004 KB
testcase_37 AC 51 ms
58,292 KB
testcase_38 AC 48 ms
58,312 KB
testcase_39 AC 52 ms
57,936 KB
testcase_40 AC 51 ms
58,296 KB
testcase_41 AC 48 ms
57,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

def prime_factorize(n):
	res = []
	for i in range(2, int(n ** 0.5) + 1):
		cnt = 0
		while(n % i == 0):
			n //= i
			cnt += 1
		if(cnt > 0):
			res.append((i, cnt))
	if(n > 1):
		res.append((n, 1))
	return res

def legendre(n,k,p):
	r = n - k
	res = 0
	while(n):
		n //= p
		res += n
	while(k):
		k //= p
		res -= k
	while(r):
		r //= p
		res -= r
	return res

ans = 10 ** 18
for p,c in prime_factorize(M):
	k = legendre(N,K,p) // c
	if(k < ans):
		ans = k
print(ans)
0