結果

問題 No.1809 Divide NCK
ユーザー miscalcmiscalc
提出日時 2022-01-14 22:00:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 515 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 59,044 KB
最終ジャッジ日時 2024-11-20 10:10:27
合計ジャッジ時間 3,017 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,472 KB
testcase_01 AC 36 ms
53,360 KB
testcase_02 AC 34 ms
53,372 KB
testcase_03 AC 34 ms
52,932 KB
testcase_04 AC 36 ms
52,880 KB
testcase_05 AC 41 ms
51,964 KB
testcase_06 AC 35 ms
52,472 KB
testcase_07 AC 38 ms
52,356 KB
testcase_08 AC 35 ms
53,096 KB
testcase_09 AC 35 ms
52,484 KB
testcase_10 AC 36 ms
52,284 KB
testcase_11 AC 37 ms
52,884 KB
testcase_12 AC 35 ms
53,332 KB
testcase_13 AC 38 ms
59,044 KB
testcase_14 AC 37 ms
52,944 KB
testcase_15 AC 36 ms
52,832 KB
testcase_16 AC 52 ms
57,464 KB
testcase_17 AC 39 ms
58,396 KB
testcase_18 AC 50 ms
57,600 KB
testcase_19 AC 51 ms
58,728 KB
testcase_20 AC 39 ms
57,996 KB
testcase_21 AC 36 ms
52,188 KB
testcase_22 AC 35 ms
52,944 KB
testcase_23 AC 36 ms
52,004 KB
testcase_24 AC 35 ms
52,748 KB
testcase_25 AC 35 ms
53,080 KB
testcase_26 AC 35 ms
53,744 KB
testcase_27 AC 35 ms
52,340 KB
testcase_28 AC 34 ms
52,392 KB
testcase_29 AC 48 ms
58,944 KB
testcase_30 AC 38 ms
58,328 KB
testcase_31 AC 37 ms
57,816 KB
testcase_32 AC 35 ms
52,432 KB
testcase_33 AC 39 ms
57,896 KB
testcase_34 AC 37 ms
57,584 KB
testcase_35 AC 39 ms
58,260 KB
testcase_36 AC 37 ms
58,472 KB
testcase_37 AC 35 ms
52,752 KB
testcase_38 AC 35 ms
51,936 KB
testcase_39 AC 36 ms
52,404 KB
testcase_40 AC 35 ms
53,296 KB
testcase_41 AC 35 ms
52,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def factorize(n):
  nn = n
  ret = []
  p = 2
  while p * p <= nn:
    e = 0
    while nn % p == 0:
      nn //= p
      e += 1
    if e > 0:
      ret.append((p, e))
    p += 1
  if nn > 1:
    ret.append((nn, 1))
  return ret

def f(n, p):
  ret = 0
  k = p
  while k <= n:
    ret += n // k
    k *= p
  return ret

n, k, m = map(int, input().split())
pes = factorize(m)

ans = 10 ** 100
for pe in pes:
  p, e = pe[0], pe[1]
  e2 = f(n, p) - f(n - k, p) - f(k, p)
  tmp = e2 // e
  ans = min(ans, tmp)
print(ans)
0