結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 225 ms
45,048 KB
testcase_01 AC 127 ms
41,444 KB
testcase_02 AC 129 ms
41,228 KB
testcase_03 AC 125 ms
41,232 KB
testcase_04 AC 222 ms
45,260 KB
testcase_05 AC 308 ms
49,428 KB
testcase_06 AC 304 ms
49,000 KB
testcase_07 AC 309 ms
49,208 KB
testcase_08 AC 164 ms
42,024 KB
testcase_09 AC 161 ms
42,116 KB
testcase_10 AC 312 ms
49,116 KB
testcase_11 AC 216 ms
44,692 KB
testcase_12 AC 307 ms
49,020 KB
testcase_13 AC 133 ms
41,188 KB
testcase_14 AC 113 ms
41,192 KB
testcase_15 AC 127 ms
41,128 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) {
		if(n>2000000 || n<2){
			System.out.println("wrong input");
			System.exit(1);
			
		}
		
		if(k>100 || k<1){
			System.out.println("wrong input");
			System.exit(1);
		}
		
		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