結果

問題 No.106 素数が嫌い!2
ユーザー kou6839kou6839
提出日時 2014-12-20 20:16:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 3,505 ms / 5,000 ms
コード長 547 bytes
コンパイル時間 2,070 ms
コンパイル使用メモリ 74,928 KB
実行使用メモリ 41,696 KB
最終ジャッジ日時 2024-06-12 02:39:23
合計ジャッジ時間 25,784 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,328 ms
41,376 KB
testcase_01 AC 121 ms
41,384 KB
testcase_02 AC 106 ms
41,448 KB
testcase_03 AC 115 ms
41,084 KB
testcase_04 AC 1,398 ms
41,384 KB
testcase_05 AC 3,505 ms
41,396 KB
testcase_06 AC 3,501 ms
41,184 KB
testcase_07 AC 3,426 ms
41,416 KB
testcase_08 AC 185 ms
41,396 KB
testcase_09 AC 189 ms
39,996 KB
testcase_10 AC 3,429 ms
41,696 KB
testcase_11 AC 1,164 ms
41,496 KB
testcase_12 AC 3,298 ms
41,408 KB
testcase_13 AC 125 ms
41,188 KB
testcase_14 AC 103 ms
41,460 KB
testcase_15 AC 107 ms
41,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;

class Main{
	
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        int ans=0;
        for(int i=2;i<=n;i++){
        	int num=i;
        	int temp=0;
        	for(int j=2;j*j<=num;j++){
        		if(num%j==0) temp++;
        		while(num%j==0){
        			num/=j;
        		}
        	}
        	if(num>1) temp++;
        	if(temp>=k) ans++;
        	
        }
        System.out.println(ans);
    }
}
0