結果

問題 No.1809 Divide NCK
ユーザー miscalcmiscalc
提出日時 2022-01-14 21:58:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 514 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,608 KB
実行使用メモリ 59,828 KB
最終ジャッジ日時 2024-11-20 10:03:37
合計ジャッジ時間 3,168 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,948 KB
testcase_01 AC 35 ms
52,436 KB
testcase_02 AC 35 ms
53,032 KB
testcase_03 WA -
testcase_04 AC 37 ms
52,316 KB
testcase_05 AC 36 ms
53,204 KB
testcase_06 WA -
testcase_07 AC 36 ms
53,268 KB
testcase_08 AC 39 ms
53,232 KB
testcase_09 WA -
testcase_10 AC 36 ms
52,220 KB
testcase_11 AC 35 ms
53,080 KB
testcase_12 AC 35 ms
53,796 KB
testcase_13 AC 36 ms
58,964 KB
testcase_14 AC 36 ms
53,872 KB
testcase_15 WA -
testcase_16 AC 54 ms
57,904 KB
testcase_17 AC 42 ms
58,520 KB
testcase_18 AC 57 ms
58,552 KB
testcase_19 AC 56 ms
57,588 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 39 ms
52,288 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 34 ms
53,076 KB
testcase_26 WA -
testcase_27 AC 35 ms
53,420 KB
testcase_28 WA -
testcase_29 AC 44 ms
58,868 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 39 ms
59,020 KB
testcase_35 WA -
testcase_36 AC 38 ms
58,196 KB
testcase_37 AC 36 ms
52,784 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

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((n, 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