結果

問題 No.106 素数が嫌い!2
ユーザー htensaihtensai
提出日時 2019-12-30 18:49:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,565 ms / 5,000 ms
コード長 1,629 bytes
コンパイル時間 3,076 ms
コンパイル使用メモリ 79,184 KB
実行使用メモリ 62,220 KB
最終ジャッジ日時 2024-11-14 06:54:30
合計ジャッジ時間 14,136 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,032 KB
testcase_01 AC 136 ms
53,864 KB
testcase_02 AC 138 ms
53,964 KB
testcase_03 AC 137 ms
53,980 KB
testcase_04 AC 735 ms
59,832 KB
testcase_05 AC 1,565 ms
61,868 KB
testcase_06 AC 1,545 ms
62,220 KB
testcase_07 AC 1,551 ms
61,900 KB
testcase_08 AC 272 ms
57,252 KB
testcase_09 AC 271 ms
57,024 KB
testcase_10 AC 1,538 ms
61,956 KB
testcase_11 AC 749 ms
59,932 KB
testcase_12 AC 1,469 ms
61,860 KB
testcase_13 AC 141 ms
53,808 KB
testcase_14 AC 139 ms
54,156 KB
testcase_15 AC 147 ms
54,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        if (k == 1) {
            System.out.println(n - 1);
            return;
        }
        TreeSet<Integer> primes = new TreeSet<>();
        primes.add(2);
        for (int i = 3; i <= n / 2; i += 2) {
            if (isPrime(i, primes)) {
                primes.add(i);
            }
        }
        int count = 0;
        for (int i = 2; i <=n; i++) {
            if (primes.contains(i)) {
                continue;
            }
            if (hasCount(i, k, primes)) {
                count++;
            }
        }
        System.out.println(count);
    }
    
    static boolean hasCount(int x, int k, TreeSet<Integer> primes) {
        int count = 0;
        for (int y : primes) {
            if (Math.sqrt(x) < y) {
                break;
            }
            if (x % y == 0) {
                count++;
                if (count >= k) {
                    return true;
                }
                while (x % y == 0) {
                    x /= y;
                }
            }
        }
        if (x != 1) {
            if (count + 1 >= k) {
                return true;
            }
        }
        return false;
    }
    static boolean isPrime(int x, TreeSet<Integer> primes) {
        for (int y : primes) {
            if (Math.sqrt(x) < y) {
                break;
            }
            if (x % y == 0) {
                return false;
            }
        }
        return true;
    }
}
0