結果
問題 | No.106 素数が嫌い!2 |
ユーザー | Goryudyuma |
提出日時 | 2017-03-23 08:44:24 |
言語 | Java21 (openjdk 21) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,927 bytes |
コンパイル時間 | 2,855 ms |
コンパイル使用メモリ | 76,960 KB |
実行使用メモリ | 834,156 KB |
最終ジャッジ日時 | 2024-07-05 20:25:08 |
合計ジャッジ時間 | 8,345 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | AC | 186 ms
82,188 KB |
testcase_02 | AC | 188 ms
82,100 KB |
testcase_03 | AC | 287 ms
95,248 KB |
testcase_04 | MLE | - |
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.*; class Main { public static int[] prime = new int[10000000]; public static void main(String args[]) { boolean[] f = new boolean[1000001]; f[0] = true; f[1] = true; int idx = 0; for (int i = 2; i < 1000001; i++) { if (!f[i]) { int j = 2; prime[idx] = i; idx++; while (i * j < 1000001) { f[i * j] = true; j++; } } } while (idx < 10000000) { prime[idx] = 1 << 25; idx++; } try (Scanner sc = new Scanner(System.in)) { int N = sc.nextInt(), K = sc.nextInt(), ans = 0; System.out.println(saiki(N, K, 1, 0)); } } public static int saiki(int N, int K, int now, int nowidx) { int ret = 0; if (K <= 0 && now <= N) { ret++; } else if(now > N) { return 0; } for (int i = nowidx; now * prime[i] <= N; i++) { int idx = 1; while (now * pow(prime[i], idx) <= N) { ret += saiki(N, K - 1, now * pow(prime[i], idx), i + 1); idx++; } } return ret; } public static int pow(int N, int M) { int ret = 1; for (int i = 0; i < M; i++) { ret *= N; } return ret; } }