結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 28 ms
9,984 KB
testcase_07 AC 29 ms
9,984 KB
testcase_08 WA -
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 28 ms
9,984 KB
testcase_11 AC 10 ms
5,504 KB
testcase_12 WA -
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.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