結果

問題 No.2417 Div Count
ユーザー redoCtAredoCtA
提出日時 2023-08-12 13:57:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 736 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,888 KB
最終ジャッジ日時 2024-11-19 16:46:42
合計ジャッジ時間 7,568 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
21,632 KB
testcase_01 AC 131 ms
21,504 KB
testcase_02 AC 149 ms
21,504 KB
testcase_03 AC 133 ms
21,632 KB
testcase_04 AC 134 ms
21,632 KB
testcase_05 AC 128 ms
21,632 KB
testcase_06 AC 128 ms
21,504 KB
testcase_07 AC 127 ms
21,632 KB
testcase_08 AC 125 ms
21,632 KB
testcase_09 AC 126 ms
21,504 KB
testcase_10 AC 139 ms
21,504 KB
testcase_11 AC 131 ms
21,632 KB
testcase_12 AC 129 ms
21,504 KB
testcase_13 AC 142 ms
21,504 KB
testcase_14 AC 140 ms
21,504 KB
testcase_15 AC 137 ms
21,504 KB
testcase_16 AC 129 ms
21,632 KB
testcase_17 AC 125 ms
21,504 KB
testcase_18 AC 130 ms
21,632 KB
testcase_19 AC 133 ms
21,504 KB
testcase_20 AC 124 ms
21,504 KB
testcase_21 AC 130 ms
21,504 KB
testcase_22 AC 127 ms
21,632 KB
testcase_23 AC 141 ms
21,504 KB
testcase_24 AC 128 ms
21,504 KB
testcase_25 AC 130 ms
21,632 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 128 ms
21,504 KB
testcase_29 AC 146 ms
21,504 KB
testcase_30 AC 136 ms
21,632 KB
testcase_31 AC 134 ms
21,632 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 134 ms
21,504 KB
testcase_35 WA -
testcase_36 AC 138 ms
21,504 KB
testcase_37 AC 150 ms
21,504 KB
testcase_38 AC 136 ms
21,632 KB
testcase_39 AC 129 ms
21,632 KB
testcase_40 AC 141 ms
21,504 KB
testcase_41 AC 125 ms
21,632 KB
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input():
    return sys.stdin.readline().rstrip()
def prime():
    P = [2]
    L = [1]*(10**6)
    for i in range(3, 10**6, 2):
        if L[i]:
            P.append(i)
            for j in range(i*i, 10**6, 2*i):
                L[j] = 0
    return P
from bisect import bisect
def main():
    N, K = map(int, input().split())
    N -= K
    P = prime()
    L = []
    for p in P:
        if N == 1:
            break
        while N%p == 0:
            L.append(p)
            N //= p
    T = set()
    T.add(1)
    for l in L:
        S = T.copy()
        T = S.copy()
        for s in S:
            T.add(s*l)
    S = sorted(list(T))
    print(len(S)-bisect(S, K-1))
            
if __name__ == "__main__":
    main()
0