結果

問題 No.2417 Div Count
ユーザー Kyoro IDKyoro ID
提出日時 2023-08-12 14:31:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 1,178 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 12,032 KB
最終ジャッジ日時 2024-04-30 06:22:29
合計ジャッジ時間 3,026 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
11,776 KB
testcase_01 AC 37 ms
11,904 KB
testcase_02 AC 38 ms
11,904 KB
testcase_03 AC 37 ms
11,904 KB
testcase_04 AC 37 ms
11,904 KB
testcase_05 AC 37 ms
11,904 KB
testcase_06 AC 38 ms
11,904 KB
testcase_07 AC 37 ms
11,904 KB
testcase_08 AC 37 ms
12,032 KB
testcase_09 AC 37 ms
12,032 KB
testcase_10 AC 38 ms
12,032 KB
testcase_11 AC 38 ms
11,904 KB
testcase_12 AC 36 ms
12,032 KB
testcase_13 AC 36 ms
12,032 KB
testcase_14 AC 37 ms
12,032 KB
testcase_15 AC 36 ms
11,904 KB
testcase_16 AC 37 ms
11,904 KB
testcase_17 AC 37 ms
11,904 KB
testcase_18 AC 36 ms
12,032 KB
testcase_19 AC 37 ms
11,904 KB
testcase_20 AC 37 ms
11,904 KB
testcase_21 AC 36 ms
11,904 KB
testcase_22 AC 37 ms
12,032 KB
testcase_23 AC 39 ms
12,032 KB
testcase_24 AC 37 ms
11,776 KB
testcase_25 AC 39 ms
11,904 KB
testcase_26 AC 39 ms
11,904 KB
testcase_27 AC 39 ms
11,904 KB
testcase_28 AC 38 ms
11,904 KB
testcase_29 AC 38 ms
11,904 KB
testcase_30 AC 38 ms
11,904 KB
testcase_31 AC 37 ms
11,904 KB
testcase_32 AC 37 ms
12,032 KB
testcase_33 AC 37 ms
11,904 KB
testcase_34 AC 38 ms
11,904 KB
testcase_35 AC 41 ms
11,904 KB
testcase_36 AC 37 ms
12,032 KB
testcase_37 AC 50 ms
11,904 KB
testcase_38 AC 39 ms
11,904 KB
testcase_39 AC 38 ms
12,032 KB
testcase_40 AC 39 ms
11,904 KB
testcase_41 AC 37 ms
11,904 KB
testcase_42 AC 37 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import logging
import math
input = sys.stdin.readline
logger = logging.getLogger(__name__)


def read():
    N, K = map(int, input().strip().split())
    return N, K


def prime_factorization(n: int):
    if n == 1:
        return ([1], [1])
    factors = []
    counts = []
    for i in range(2, math.isqrt(n)+1):
        if i * i > n:
            break
        if n % i == 0:
            factors.append(i)
            n //= i
            count = 1
            while n % i == 0:
                n //= i
                count += 1
            counts.append(count)
    if n > 1:
        factors.append(n)
        counts.append(1)
    return factors, counts


def solve(N, K):
    n = N - K
    factors, counts = prime_factorization(n)
    n_factors = len(factors)
    ans = []

    def dfs(i, a):
        if i >= n_factors:
            if a > K:
                ans.append(a)
            return
        for count in range(counts[i]+1):
            dfs(i+1, a * (factors[i] ** count))
    
    dfs(0, 1)
    return len(ans)
    

if __name__ == "__main__":
    inputs = read()
    outputs = solve(*inputs)
    if outputs is not None:
        print("%s" % str(outputs))
0