結果

問題 No.106 素数が嫌い!2
ユーザー scachescache
提出日時 2014-11-19 15:37:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 341 ms / 5,000 ms
コード長 939 bytes
コンパイル時間 2,547 ms
コンパイル使用メモリ 77,920 KB
実行使用メモリ 49,216 KB
最終ジャッジ日時 2024-06-10 21:15:42
合計ジャッジ時間 6,571 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 234 ms
45,016 KB
testcase_01 AC 130 ms
41,072 KB
testcase_02 AC 130 ms
40,984 KB
testcase_03 AC 126 ms
41,024 KB
testcase_04 AC 242 ms
45,300 KB
testcase_05 AC 337 ms
49,116 KB
testcase_06 AC 334 ms
49,088 KB
testcase_07 AC 341 ms
48,980 KB
testcase_08 AC 173 ms
41,756 KB
testcase_09 AC 176 ms
42,152 KB
testcase_10 AC 339 ms
49,216 KB
testcase_11 AC 229 ms
44,744 KB
testcase_12 AC 324 ms
48,496 KB
testcase_13 AC 131 ms
41,020 KB
testcase_14 AC 131 ms
41,236 KB
testcase_15 AC 133 ms
41,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		Main p = new Main();
	}

	public Main() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		System.out.println(solve(n, k));
	}

	public int solve(int n, int k) {
		int[] sieve = new int[n+1];
		Arrays.fill(sieve, Integer.MAX_VALUE);
		
		for(int i=2;i<sieve.length;i++){
			if(sieve[i] != Integer.MAX_VALUE)
				continue;
			
			for(int j=i;j<sieve.length;j+=i)
				if(sieve[j] == Integer.MAX_VALUE)
					sieve[j] = i;
		}
		
		int res = 0;
		for(int i=2;i<sieve.length;i++){
			int cur = i;
			int count = 0;
			while(cur > 1){
				int j = sieve[cur];
				while(cur%j==0)
					cur /= j;
				
				count++;
			}
			
			if(count>=k)
				res++;
//			System.out.println(String.format("%6d : %3d", i, count));
		}
		
		return res;
	}

}
0