結果
問題 | No.106 素数が嫌い!2 |
ユーザー | chiho_miyako |
提出日時 | 2015-04-16 12:14:28 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,153 bytes |
コンパイル時間 | 1,984 ms |
コンパイル使用メモリ | 77,648 KB |
実行使用メモリ | 122,796 KB |
最終ジャッジ日時 | 2024-07-04 14:53:29 |
合計ジャッジ時間 | 14,812 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner koko = new Scanner(System.in); int num = koko.nextInt(); int k = koko.nextInt(); int ptr = 0; int[] prime = new int[150000]; prime[ptr++] = 2; prime[ptr++] = 3; for (int n = 5; n <= 2000000; n += 2) { boolean wflag = false; for (int i = 0; prime[i]*prime[i] <= n; i++) { if (n % prime[i] == 0){ wflag = true; break; } } if (!wflag){ prime[ptr++] = n; } } int[] count = new int[num+1]; int number=0; for(int i=2; i<num+1; i++){ count[i]=0; for(int j=0; prime[j]<=i; j++){ if(i%prime[j]==0){ count[i]++; if(count[i]>=k){ number++; break; } } } } System.out.println(number); } }