結果
問題 | No.106 素数が嫌い!2 |
ユーザー | te-sh |
提出日時 | 2016-08-30 16:43:01 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 563 bytes |
コンパイル時間 | 817 ms |
コンパイル使用メモリ | 117,108 KB |
実行使用メモリ | 19,504 KB |
最終ジャッジ日時 | 2024-06-12 03:52:05 |
合計ジャッジ時間 | 1,842 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | AC | 43 ms
12,144 KB |
testcase_05 | AC | 43 ms
10,844 KB |
testcase_06 | AC | 39 ms
10,752 KB |
testcase_07 | AC | 38 ms
10,844 KB |
testcase_08 | AC | 7 ms
6,944 KB |
testcase_09 | AC | 3 ms
6,940 KB |
testcase_10 | AC | 41 ms
10,392 KB |
testcase_11 | AC | 15 ms
6,940 KB |
testcase_12 | AC | 85 ms
19,504 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,944 KB |
ソースコード
import std.algorithm, std.array, std.container, std.range; import std.string, std.conv; import std.math, std.bigint, std.bitmanip, std.random; import std.stdio, std.typecons; void main() { auto rd = readln.split.map!(to!int); auto n = rd[0], k = rd[1]; auto pfi = primeFactors(n); writeln(pfi.filter!(pf => pf >= k).array.length); } int[] primeFactors(int n) { auto sieve = new int[n + 1]; auto max = max(n / 2, 2); foreach (p; 2..max + 1) if (sieve[p] == 0) foreach (q; iota(p, n + 1, p)) sieve[q] += 1; return sieve; }