結果

問題 No.2417 Div Count
ユーザー nikoro256nikoro256
提出日時 2023-08-12 13:45:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 59,708 KB
最終ジャッジ日時 2024-11-19 16:05:15
合計ジャッジ時間 2,854 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,464 KB
testcase_01 AC 35 ms
52,812 KB
testcase_02 AC 34 ms
53,036 KB
testcase_03 AC 35 ms
53,384 KB
testcase_04 AC 34 ms
52,880 KB
testcase_05 AC 35 ms
52,160 KB
testcase_06 AC 33 ms
53,200 KB
testcase_07 AC 33 ms
53,016 KB
testcase_08 AC 33 ms
52,944 KB
testcase_09 AC 35 ms
53,288 KB
testcase_10 AC 35 ms
52,392 KB
testcase_11 AC 35 ms
52,832 KB
testcase_12 AC 38 ms
53,756 KB
testcase_13 AC 35 ms
51,760 KB
testcase_14 AC 35 ms
52,552 KB
testcase_15 AC 35 ms
53,296 KB
testcase_16 AC 35 ms
53,652 KB
testcase_17 AC 35 ms
53,820 KB
testcase_18 AC 34 ms
52,804 KB
testcase_19 AC 33 ms
52,684 KB
testcase_20 AC 37 ms
58,452 KB
testcase_21 AC 37 ms
52,208 KB
testcase_22 AC 37 ms
52,752 KB
testcase_23 AC 39 ms
58,124 KB
testcase_24 AC 40 ms
58,132 KB
testcase_25 AC 39 ms
58,996 KB
testcase_26 AC 38 ms
58,264 KB
testcase_27 AC 39 ms
57,304 KB
testcase_28 AC 39 ms
57,544 KB
testcase_29 AC 40 ms
57,860 KB
testcase_30 AC 39 ms
58,888 KB
testcase_31 AC 38 ms
57,876 KB
testcase_32 AC 43 ms
58,908 KB
testcase_33 AC 42 ms
57,064 KB
testcase_34 AC 39 ms
58,240 KB
testcase_35 AC 44 ms
59,320 KB
testcase_36 AC 42 ms
57,744 KB
testcase_37 AC 41 ms
57,132 KB
testcase_38 AC 51 ms
59,068 KB
testcase_39 AC 44 ms
59,368 KB
testcase_40 AC 40 ms
59,708 KB
testcase_41 AC 40 ms
58,240 KB
testcase_42 AC 35 ms
52,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#https://qiita.com/LorseKudos/items/9eb560494862c8b4eb56
def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]

N,K=map(int,input().split())
N-=K
ans=0
for d in make_divisors(N):
    if K<d:
        ans+=1
print(ans)
        
0