結果
問題 | No.106 素数が嫌い!2 |
ユーザー | holeguma |
提出日時 | 2015-08-19 23:34:06 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 949 bytes |
コンパイル時間 | 1,780 ms |
コンパイル使用メモリ | 77,456 KB |
実行使用メモリ | 50,584 KB |
最終ジャッジ日時 | 2024-07-18 10:40:57 |
合計ジャッジ時間 | 3,094 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
ソースコード
import java.io.*; import java.util.Arrays; import java.util.StringTokenizer; class Main{ static final InputStream in=System.in; static final PrintWriter out=new PrintWriter(System.out); public static void main(String[] args) throws IOException{ BufferedReader br=new BufferedReader(new InputStreamReader(in)); String line=""; while((line=br.readLine())!=null&&!line.isEmpty()){ StringTokenizer st=new StringTokenizer(br.readLine()); int n=Integer.parseInt(st.nextToken()); int k=Integer.parseInt(st.nextToken()); boolean[] p=sieveOfEratosthenes(n); int[] a=new int[n+1]; for(int i=2;i<=n;i++){ if(p[i]) for(int j=i;j<=n;j+=i) a[j]++; } int ans=0; for(int i=2;i<=n;i++) if(a[i]>=k) ans++; out.println(ans); } out.flush(); } public static boolean[] sieveOfEratosthenes(int n){ boolean[] p=new boolean[n+1]; Arrays.fill(p,true); p[0]=false; p[1]=false; for(int i=2;i<=Math.sqrt(n);i++){ if(p[i]) for(int j=i+i;j<=n;j+=i) p[j]=false; } return p; } }