結果

問題 No.106 素数が嫌い!2
ユーザー YamaKasaYamaKasa
提出日時 2018-07-07 18:06:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 909 bytes
コンパイル時間 3,650 ms
コンパイル使用メモリ 78,524 KB
実行使用メモリ 65,548 KB
最終ジャッジ日時 2024-07-05 01:41:36
合計ジャッジ時間 18,511 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 129 ms
53,968 KB
testcase_02 AC 130 ms
54,324 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2,043 ms
65,240 KB
testcase_07 AC 2,065 ms
65,312 KB
testcase_08 WA -
testcase_09 AC 211 ms
54,264 KB
testcase_10 AC 2,058 ms
65,548 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 116 ms
53,084 KB
testcase_14 AC 131 ms
53,924 KB
testcase_15 AC 134 ms
54,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int K = scan.nextInt();
		scan.close();
		ArrayList<Integer> list = new ArrayList<Integer>();
		int []n = new int[N + 1];
		Arrays.fill(n, 0);
		for(int i = 2; i <= N; i++) {
			if(isPrime(i)) {
				list.add(i);
			}
		}
		for(int i : list) {
			int j = 1;
			while(i * j <= N) {
				n[i * j] ++;
				j ++;
			}
		}
//		for(int i : list) {
//			System.out.println(i);
//		}
		int cnt = 0;
		for(int i = 2; i <= N; i++) {
			if(n[i] == K) {
				cnt++;
			}
		}
		System.out.println(cnt);


	}
	public static boolean isPrime(long n) {
        for(long i = 2; i <= (int)Math.sqrt(n); i++){
            if(n % i == 0) {
               return false;
            }
        }
        return true;
    }

}
0