結果

問題 No.2417 Div Count
ユーザー watayuwatayu
提出日時 2023-08-12 15:24:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 456 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 59,596 KB
最終ジャッジ日時 2024-11-20 02:03:46
合計ジャッジ時間 3,150 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 39 ms
51,456 KB
testcase_02 WA -
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 41 ms
51,712 KB
testcase_05 AC 38 ms
51,712 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 38 ms
51,584 KB
testcase_12 AC 39 ms
51,456 KB
testcase_13 AC 39 ms
52,096 KB
testcase_14 AC 38 ms
51,584 KB
testcase_15 WA -
testcase_16 AC 39 ms
51,840 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 41 ms
56,960 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 41 ms
57,216 KB
testcase_24 WA -
testcase_25 AC 41 ms
57,216 KB
testcase_26 AC 40 ms
57,344 KB
testcase_27 AC 41 ms
56,704 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 45 ms
56,704 KB
testcase_33 AC 44 ms
57,344 KB
testcase_34 WA -
testcase_35 AC 48 ms
56,704 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 58 ms
59,008 KB
testcase_39 AC 48 ms
58,624 KB
testcase_40 AC 45 ms
59,136 KB
testcase_41 AC 44 ms
58,240 KB
testcase_42 AC 38 ms
51,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

num,k = map(int, input().split())
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]
ans = make_divisors(num-k)
pos = 0
for i in range(len(ans)):
    if ans[i] > k:
        pos = i
        break
print(len(ans)-pos)
0