結果

問題 No.106 素数が嫌い!2
ユーザー te-shte-sh
提出日時 2017-01-27 17:10:43
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 366 bytes
コンパイル時間 619 ms
コンパイル使用メモリ 92,628 KB
実行使用メモリ 12,104 KB
最終ジャッジ日時 2023-09-03 00:58:44
合計ジャッジ時間 1,740 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
6,956 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,384 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 19 ms
8,260 KB
testcase_05 AC 41 ms
10,536 KB
testcase_06 AC 40 ms
11,300 KB
testcase_07 AC 42 ms
12,104 KB
testcase_08 AC 3 ms
4,892 KB
testcase_09 AC 4 ms
4,380 KB
testcase_10 AC 43 ms
11,600 KB
testcase_11 AC 16 ms
6,852 KB
testcase_12 AC 42 ms
10,004 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 AC 1 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;
import std.math;      // math functions

void main()
{
  auto rd = readln.split.to!(int[]), n = rd[0], k = rd[1];

  auto sieve = new int[](n + 1);

  foreach (p; iota(2, n + 1))
    if (sieve[p] == 0)
      foreach (q; iota(p, n + 1, p))
        ++sieve[q];

  writeln(sieve.count!(a => a >= k));
}
0