結果

問題 No.106 素数が嫌い!2
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-29 04:07:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,126 ms / 5,000 ms
コード長 718 bytes
コンパイル時間 5,632 ms
コンパイル使用メモリ 73,788 KB
実行使用メモリ 54,232 KB
最終ジャッジ日時 2024-10-11 22:51:48
合計ジャッジ時間 21,420 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 937 ms
54,028 KB
testcase_01 AC 125 ms
54,144 KB
testcase_02 AC 129 ms
54,232 KB
testcase_03 AC 127 ms
53,952 KB
testcase_04 AC 881 ms
53,984 KB
testcase_05 AC 2,126 ms
53,528 KB
testcase_06 AC 2,098 ms
54,144 KB
testcase_07 AC 2,027 ms
53,632 KB
testcase_08 AC 183 ms
53,968 KB
testcase_09 AC 187 ms
53,756 KB
testcase_10 AC 2,046 ms
54,092 KB
testcase_11 AC 750 ms
52,812 KB
testcase_12 AC 1,983 ms
53,848 KB
testcase_13 AC 124 ms
53,500 KB
testcase_14 AC 124 ms
53,972 KB
testcase_15 AC 127 ms
53,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise137{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int n = sc.nextInt();
    int k = sc.nextInt();
    int count = 0;
    for(int i = 2; i < n + 1; i++){
      int x = i;
      int pCount = 0;
      int lastNum = 2;
      if(x % 2 == 0){
        pCount++;
      }
      while(x % 2 == 0){
        x /= 2;
      }
      for(int j = 3; j * j <= x; j += 2){
        if(x % j == 0){
          pCount++;
        }
        while(x % j == 0){
          x /= j;
        }
        lastNum = j;
      }
      if(x > lastNum){
        pCount++;
      }
      if(pCount >= k){
        count++;
      }
    }
    System.out.println(count);
  }
}
0