結果

問題 No.106 素数が嫌い!2
ユーザー te-shte-sh
提出日時 2017-01-27 17:09:54
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 386 bytes
コンパイル時間 678 ms
コンパイル使用メモリ 93,236 KB
実行使用メモリ 11,816 KB
最終ジャッジ日時 2023-09-03 00:58:35
合計ジャッジ時間 1,927 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 1 ms
4,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 26 ms
11,816 KB
testcase_07 AC 25 ms
11,012 KB
testcase_08 WA -
testcase_09 AC 3 ms
4,380 KB
testcase_10 AC 25 ms
11,032 KB
testcase_11 AC 10 ms
7,472 KB
testcase_12 WA -
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 1 ms
4,376 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.to!real.sqrt.to!int + 2))
    if (sieve[p] == 0)
      foreach (q; iota(p, n + 1, p))
        ++sieve[q];

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