結果

問題 No.2417 Div Count
ユーザー Basin-BugBasin-Bug
提出日時 2023-08-12 14:23:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 262 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 59,360 KB
最終ジャッジ日時 2024-11-19 19:06:45
合計ジャッジ時間 2,783 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,048 KB
testcase_01 AC 39 ms
53,952 KB
testcase_02 WA -
testcase_03 AC 34 ms
52,320 KB
testcase_04 AC 35 ms
52,656 KB
testcase_05 AC 34 ms
52,216 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 35 ms
52,612 KB
testcase_09 AC 34 ms
52,616 KB
testcase_10 WA -
testcase_11 AC 35 ms
53,464 KB
testcase_12 AC 34 ms
52,480 KB
testcase_13 WA -
testcase_14 AC 36 ms
52,432 KB
testcase_15 AC 37 ms
52,864 KB
testcase_16 AC 36 ms
52,284 KB
testcase_17 WA -
testcase_18 AC 35 ms
53,176 KB
testcase_19 AC 36 ms
52,896 KB
testcase_20 AC 37 ms
58,580 KB
testcase_21 AC 36 ms
52,744 KB
testcase_22 AC 34 ms
53,676 KB
testcase_23 AC 39 ms
58,584 KB
testcase_24 AC 37 ms
58,540 KB
testcase_25 AC 37 ms
57,892 KB
testcase_26 AC 38 ms
58,864 KB
testcase_27 AC 38 ms
58,800 KB
testcase_28 AC 37 ms
58,672 KB
testcase_29 AC 38 ms
58,196 KB
testcase_30 AC 39 ms
57,836 KB
testcase_31 AC 37 ms
59,360 KB
testcase_32 AC 40 ms
57,916 KB
testcase_33 AC 42 ms
58,336 KB
testcase_34 AC 39 ms
59,348 KB
testcase_35 AC 42 ms
57,644 KB
testcase_36 AC 42 ms
59,224 KB
testcase_37 AC 43 ms
58,204 KB
testcase_38 AC 51 ms
58,544 KB
testcase_39 AC 45 ms
58,856 KB
testcase_40 AC 42 ms
58,420 KB
testcase_41 AC 42 ms
58,568 KB
testcase_42 AC 36 ms
52,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
N -= K

ans = 0
for i in range(1, int(N ** 0.5) + 1):
  if N % i == 0:
    if i <= K and N // i > K and N != i * i:
      ans += 1
    elif N // i > K and N != i * i:
      ans += 2
    elif i * i == N:
      ans += 1

print(ans)
0