結果

問題 No.2417 Div Count
ユーザー LucagonLucagon
提出日時 2023-08-12 13:58:02
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-19 16:53:09
合計ジャッジ時間 2,964 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 41
権限があれば一括ダウンロードができます

ソースコード

diff #

def count(n):
    m = int(n ** 0.5) + 2
    cnt = 0
    s = set()
    for i in range(1,m):
        if n % i == 0 and i not in s:
            if i > k:
                cnt += 1
                s.add(i)
            if n // i != i and n // i > k:
                cnt += 1
                s.add(n // i)
    return cnt

n,k = map(int,input().split())

ans = count(n-k)

print(ans)
0