結果

問題 No.36 素数が嫌い!
ユーザー te-shte-sh
提出日時 2016-08-27 23:32:50
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 658 bytes
コンパイル時間 743 ms
コンパイル使用メモリ 104,072 KB
実行使用メモリ 15,672 KB
最終ジャッジ日時 2024-06-12 03:47:05
合計ジャッジ時間 2,915 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
7,876 KB
testcase_01 AC 68 ms
11,520 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 1 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 32 ms
6,272 KB
testcase_12 AC 106 ms
14,208 KB
testcase_13 AC 102 ms
14,080 KB
testcase_14 AC 56 ms
9,728 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 33 ms
6,912 KB
testcase_20 AC 99 ms
14,080 KB
testcase_21 AC 69 ms
11,384 KB
testcase_22 AC 71 ms
11,520 KB
testcase_23 AC 42 ms
7,808 KB
testcase_24 AC 45 ms
8,448 KB
testcase_25 AC 44 ms
8,448 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.array, std.container, std.range;
import std.string, std.conv, std.math;
import std.stdio, std.typecons;

void main()
{
  auto n = readln.chomp.to!long;

  auto max = sqrt(n.to!real).to!int;
  auto pi = primes(max);

  auto r = pi.any!(p => n % p == 0 && !pi.canFind(n / p));

  writeln(r ? "YES" : "NO");
}

int[] primes(int n)
{
  auto sieve = new bool[n + 1];
  sieve.fill(true);

  auto max = sqrt(n.to!real).to!int;
  for (auto p = 2; p <= max; ++p)
    if (sieve[p])
      for (auto q = p * 2; q <= n; q += p)
        sieve[q] = false;

  int[] r;
  for (auto p = 2; p <= n; ++p)
    if (sieve[p])
      r ~= p;

  return r;
}
0