結果
問題 | No.106 素数が嫌い!2 |
ユーザー | Grenache |
提出日時 | 2015-11-23 20:00:19 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 644 bytes |
コンパイル時間 | 3,356 ms |
コンパイル使用メモリ | 75,136 KB |
実行使用メモリ | 60,536 KB |
最終ジャッジ日時 | 2024-09-13 17:17:48 |
合計ジャッジ時間 | 6,420 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 132 ms
53,708 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 160 ms
60,144 KB |
testcase_07 | AC | 144 ms
59,420 KB |
testcase_08 | WA | - |
testcase_09 | AC | 144 ms
53,792 KB |
testcase_10 | AC | 156 ms
60,376 KB |
testcase_11 | AC | 155 ms
56,580 KB |
testcase_12 | WA | - |
testcase_13 | AC | 130 ms
54,228 KB |
testcase_14 | AC | 116 ms
52,912 KB |
testcase_15 | AC | 132 ms
53,780 KB |
ソースコード
import java.util.Scanner; public class Main_yukicoder106 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int k = sc.nextInt(); int[] cnt = new int[Math.max(3 + 1, n + 1)]; for (int i = 2; i * i <= Math.max(9, n); i++) { if (cnt[i] == 0) { for (int j = 1; i * j <= n; j++) { cnt[i * j]++; } } } int ret = 0; for (int i = 2; i <= n; i++) { if (cnt[i] >= k) { ret++; } } System.out.println(ret); sc.close(); } }