結果

問題 No.106 素数が嫌い!2
ユーザー te-shte-sh
提出日時 2017-01-27 17:10:43
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 366 bytes
コンパイル時間 784 ms
コンパイル使用メモリ 104,192 KB
実行使用メモリ 9,984 KB
最終ジャッジ日時 2024-06-12 06:40:07
合計ジャッジ時間 1,808 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
6,016 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 20 ms
6,016 KB
testcase_05 AC 57 ms
9,984 KB
testcase_06 AC 50 ms
9,984 KB
testcase_07 AC 49 ms
9,984 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 51 ms
9,984 KB
testcase_11 AC 18 ms
5,504 KB
testcase_12 AC 53 ms
9,728 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,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