結果

問題 No.106 素数が嫌い!2
ユーザー mitsuomitsuo
提出日時 2016-05-09 23:32:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 631 ms / 5,000 ms
コード長 971 bytes
コンパイル時間 2,271 ms
コンパイル使用メモリ 78,120 KB
実行使用メモリ 60,380 KB
最終ジャッジ日時 2024-10-05 13:19:40
合計ジャッジ時間 7,692 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 312 ms
58,092 KB
testcase_01 AC 107 ms
53,836 KB
testcase_02 AC 95 ms
52,776 KB
testcase_03 AC 110 ms
54,012 KB
testcase_04 AC 309 ms
58,152 KB
testcase_05 AC 631 ms
59,704 KB
testcase_06 AC 626 ms
60,380 KB
testcase_07 AC 595 ms
59,404 KB
testcase_08 AC 113 ms
53,348 KB
testcase_09 AC 126 ms
54,320 KB
testcase_10 AC 603 ms
59,992 KB
testcase_11 AC 289 ms
56,728 KB
testcase_12 AC 605 ms
59,796 KB
testcase_13 AC 100 ms
52,696 KB
testcase_14 AC 118 ms
53,988 KB
testcase_15 AC 113 ms
53,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package jp.fedom.challange.yuki.l2.q106;

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		List<String> input = new ArrayList<>();
		while (sc.hasNext()) {
			input.add(sc.nextLine());
		}

		System.out.println(solve(input));

		sc.close();
	}

	public static int solve(List<String> in) {
		int N = Integer.valueOf(in.get(0).split(" ")[0]);
		int K = Integer.valueOf(in.get(0).split(" ")[1]);
		int[] f = new int[N + 1];

		int c = 0;

		for (int i = 2; i <= N; i++) {
			if (isPrime(i)) {
				for (int n = 1; i * n <= N; n++) {
					f[n * i]++;
					if (f[n * i] == K) {
						c++;
					}
				}
			}
		}

		return c;
	}

	private static boolean isPrime(int j) {
		int N = (int) Math.sqrt(j);
		boolean isPrime = true;
		for (int i = 2; i <= N; i++) {
			if (j % i == 0) {
				isPrime = false;
				break;
			}
		}
		return isPrime;
	}

}
0