結果

問題 No.36 素数が嫌い!
ユーザー te-shte-sh
提出日時 2016-08-27 23:38:57
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 738 bytes
コンパイル時間 785 ms
コンパイル使用メモリ 103,752 KB
実行使用メモリ 14,612 KB
最終ジャッジ日時 2024-06-12 03:47:11
合計ジャッジ時間 2,973 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
8,072 KB
testcase_01 AC 68 ms
12,356 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 WA -
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 32 ms
6,944 KB
testcase_12 AC 106 ms
14,380 KB
testcase_13 WA -
testcase_14 AC 57 ms
9,568 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 34 ms
6,940 KB
testcase_20 AC 97 ms
14,612 KB
testcase_21 AC 65 ms
11,372 KB
testcase_22 AC 70 ms
11,940 KB
testcase_23 AC 42 ms
7,872 KB
testcase_24 AC 48 ms
8,472 KB
testcase_25 AC 46 ms
8,532 KB
testcase_26 AC 61 ms
9,380 KB
testcase_27 AC 88 ms
13,588 KB
testcase_28 AC 64 ms
9,788 KB
testcase_29 AC 103 ms
14,244 KB
権限があれば一括ダウンロードができます

ソースコード

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 && !isPrime(n / p, pi));

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

bool isPrime(long n, int[] primes)
{
  return primes.all!(p => n % p != 0);
}

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