結果

問題 No.2417 Div Count
ユーザー tentententen
提出日時 2024-07-02 13:17:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 1,464 bytes
コンパイル時間 2,098 ms
コンパイル使用メモリ 87,064 KB
実行使用メモリ 53,460 KB
最終ジャッジ日時 2024-07-02 13:17:48
合計ジャッジ時間 6,075 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
51,192 KB
testcase_01 AC 65 ms
50,920 KB
testcase_02 AC 62 ms
50,664 KB
testcase_03 AC 58 ms
50,888 KB
testcase_04 AC 59 ms
50,964 KB
testcase_05 AC 56 ms
50,808 KB
testcase_06 AC 56 ms
50,752 KB
testcase_07 AC 58 ms
50,936 KB
testcase_08 AC 58 ms
51,020 KB
testcase_09 AC 59 ms
50,800 KB
testcase_10 AC 58 ms
51,064 KB
testcase_11 AC 60 ms
51,132 KB
testcase_12 AC 58 ms
50,956 KB
testcase_13 AC 57 ms
50,540 KB
testcase_14 AC 61 ms
50,788 KB
testcase_15 AC 56 ms
50,468 KB
testcase_16 AC 59 ms
50,788 KB
testcase_17 AC 65 ms
50,892 KB
testcase_18 AC 61 ms
50,416 KB
testcase_19 AC 57 ms
50,756 KB
testcase_20 AC 56 ms
50,760 KB
testcase_21 AC 59 ms
50,932 KB
testcase_22 AC 58 ms
50,832 KB
testcase_23 AC 59 ms
50,784 KB
testcase_24 AC 59 ms
50,896 KB
testcase_25 AC 59 ms
51,068 KB
testcase_26 AC 57 ms
50,960 KB
testcase_27 AC 64 ms
50,784 KB
testcase_28 AC 60 ms
50,892 KB
testcase_29 AC 61 ms
51,076 KB
testcase_30 AC 62 ms
50,856 KB
testcase_31 AC 61 ms
50,804 KB
testcase_32 AC 73 ms
51,644 KB
testcase_33 AC 66 ms
51,332 KB
testcase_34 AC 63 ms
51,088 KB
testcase_35 AC 72 ms
51,576 KB
testcase_36 AC 80 ms
52,100 KB
testcase_37 AC 77 ms
51,496 KB
testcase_38 AC 113 ms
53,256 KB
testcase_39 AC 99 ms
53,460 KB
testcase_40 AC 81 ms
51,336 KB
testcase_41 AC 72 ms
51,332 KB
testcase_42 AC 60 ms
51,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long n = sc.nextLong();
        long k = sc.nextLong();
        long base = n - k;
        Set<Long> counts = new HashSet<>();
        for (long i = 1; i <= Math.sqrt(base); i++) {
            if (base % i == 0) {
                counts.add(i);
                counts.add(base / i);
            }
        }
        System.out.println(counts.stream().filter(x -> x > k).count());
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0