結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
21,700 KB
testcase_01 AC 132 ms
21,676 KB
testcase_02 AC 143 ms
21,692 KB
testcase_03 AC 137 ms
21,640 KB
testcase_04 AC 143 ms
21,624 KB
testcase_05 AC 136 ms
21,792 KB
testcase_06 AC 132 ms
21,716 KB
testcase_07 AC 139 ms
21,652 KB
testcase_08 AC 130 ms
21,636 KB
testcase_09 AC 132 ms
21,720 KB
testcase_10 AC 129 ms
21,700 KB
testcase_11 AC 124 ms
21,716 KB
testcase_12 AC 125 ms
21,608 KB
testcase_13 AC 126 ms
21,612 KB
testcase_14 AC 125 ms
21,728 KB
testcase_15 AC 125 ms
21,636 KB
testcase_16 AC 131 ms
21,672 KB
testcase_17 AC 125 ms
21,696 KB
testcase_18 AC 134 ms
21,776 KB
testcase_19 AC 137 ms
21,688 KB
testcase_20 AC 131 ms
21,640 KB
testcase_21 AC 129 ms
21,696 KB
testcase_22 AC 141 ms
21,728 KB
testcase_23 AC 142 ms
21,628 KB
testcase_24 AC 136 ms
21,680 KB
testcase_25 AC 133 ms
21,720 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 135 ms
21,784 KB
testcase_29 AC 143 ms
21,644 KB
testcase_30 AC 136 ms
21,728 KB
testcase_31 AC 146 ms
21,668 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 139 ms
21,604 KB
testcase_35 WA -
testcase_36 AC 128 ms
21,652 KB
testcase_37 AC 139 ms
21,624 KB
testcase_38 AC 135 ms
21,644 KB
testcase_39 AC 138 ms
21,732 KB
testcase_40 AC 131 ms
21,636 KB
testcase_41 AC 129 ms
21,628 KB
testcase_42 AC 134 ms
21,836 KB
権限があれば一括ダウンロードができます

ソースコード

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))
            
if __name__ == "__main__":
    main()
0