結果

問題 No.12 限定された素数
ユーザー te-shte-sh
提出日時 2016-09-01 12:13:23
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 81 ms / 5,000 ms
コード長 1,431 bytes
コンパイル時間 815 ms
コンパイル使用メモリ 127,016 KB
実行使用メモリ 9,288 KB
最終ジャッジ日時 2024-06-12 04:05:34
合計ジャッジ時間 3,902 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
8,736 KB
testcase_01 AC 73 ms
8,468 KB
testcase_02 AC 73 ms
8,496 KB
testcase_03 AC 72 ms
8,524 KB
testcase_04 AC 74 ms
8,800 KB
testcase_05 AC 74 ms
8,604 KB
testcase_06 AC 76 ms
8,536 KB
testcase_07 AC 81 ms
8,348 KB
testcase_08 AC 72 ms
8,384 KB
testcase_09 AC 70 ms
8,448 KB
testcase_10 AC 73 ms
8,548 KB
testcase_11 AC 78 ms
8,596 KB
testcase_12 AC 77 ms
9,288 KB
testcase_13 AC 76 ms
8,564 KB
testcase_14 AC 75 ms
8,456 KB
testcase_15 AC 75 ms
8,336 KB
testcase_16 AC 78 ms
8,304 KB
testcase_17 AC 75 ms
8,332 KB
testcase_18 AC 74 ms
8,372 KB
testcase_19 AC 75 ms
8,504 KB
testcase_20 AC 72 ms
8,472 KB
testcase_21 AC 73 ms
8,524 KB
testcase_22 AC 74 ms
8,640 KB
testcase_23 AC 75 ms
8,400 KB
testcase_24 AC 77 ms
8,324 KB
testcase_25 AC 75 ms
8,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.array, std.container, std.range, std.bitmanip;
import std.numeric, std.math, std.bigint, std.random;
import std.string, std.conv, std.stdio, std.typecons;

const auto maxPeriod = 5000000;

void main()
{
  auto n = readln.chomp.to!int;
  auto ai = readln.split.map!(to!int);

  auto b = 0;
  foreach (a; ai) b |= (1 << a);

  auto pi = primes(maxPeriod);
  auto qi = pi.map!(digits);

  auto maxLen = 0;
  auto s = -1;
  foreach (t, p; pi) {
    if ((qi[t] & ~b) != 0) {
      if (s != -1 && qi[s..t].reduce!("a | b") == b) {
        auto p1 = s == 0 ? 1 : pi[s - 1] + 1;
        auto p2 = t == pi.length - 1 ? maxPeriod : pi[t] - 1;
        auto len = p2 - p1;
        maxLen = max(maxLen, len);
      }
      s = -1;
    } else {
      if (s == -1)
        s = t.to!int;
    }
  }
  if (s != -1) {
    auto t = pi.length;
    auto p1 = s == 0 ? 1 : pi[s - 1] + 1;
    auto p2 = maxPeriod;
    auto len = p2 - p1;
    maxLen = max(maxLen, len);
  }

  writeln(maxLen == 0 ? -1 : maxLen);
}

int digits(int n)
{
  auto r = 0;
  for (; n > 0; n /= 10) r |= (1 << (n % 10));
  return r;
}

int[] primes(int n)
{
  auto sieve = new bool[](n + 1);
  sieve[0..2] = false;
  sieve[2..$] = true;

  foreach (p; 2..n.to!real.sqrt.to!int + 1)
    if (sieve[p])
      foreach (q; iota(p * 2, n + 1, p))
        sieve[q] = false;

  return sieve.enumerate
    .filter!("a[1]")
    .map!("a[0]").map!(to!int).array;
}
0