結果

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

テストケース

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

ソースコード

diff #

import sys
def input():
    return sys.stdin.readline().rstrip()
from bisect import bisect
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
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
    S = set()
    S.add(1)
    for l in L:
        T = S.copy()
        for s in S:
            T.add(s*l)
        S = T.copy()
    S = sorted(list(S))
    print(len(S)-bisect(S, K))
if __name__ == "__main__":
    main()
0