結果

問題 No.12 限定された素数
ユーザー nebukuro09nebukuro09
提出日時 2016-11-11 12:43:23
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 177 ms / 5,000 ms
コード長 1,168 bytes
コンパイル時間 807 ms
コンパイル使用メモリ 114,876 KB
実行使用メモリ 12,564 KB
最終ジャッジ日時 2024-06-12 05:04:08
合計ジャッジ時間 6,274 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
12,028 KB
testcase_01 AC 168 ms
11,816 KB
testcase_02 AC 161 ms
11,112 KB
testcase_03 AC 158 ms
11,096 KB
testcase_04 AC 167 ms
11,644 KB
testcase_05 AC 171 ms
11,744 KB
testcase_06 AC 167 ms
11,332 KB
testcase_07 AC 170 ms
11,480 KB
testcase_08 AC 164 ms
12,200 KB
testcase_09 AC 165 ms
11,104 KB
testcase_10 AC 166 ms
12,160 KB
testcase_11 AC 168 ms
11,552 KB
testcase_12 AC 173 ms
12,128 KB
testcase_13 AC 172 ms
12,216 KB
testcase_14 AC 172 ms
11,268 KB
testcase_15 AC 170 ms
12,420 KB
testcase_16 AC 177 ms
11,568 KB
testcase_17 AC 160 ms
11,260 KB
testcase_18 AC 162 ms
10,968 KB
testcase_19 AC 162 ms
12,376 KB
testcase_20 AC 161 ms
11,180 KB
testcase_21 AC 167 ms
11,412 KB
testcase_22 AC 162 ms
11,668 KB
testcase_23 AC 160 ms
11,836 KB
testcase_24 AC 158 ms
12,564 KB
testcase_25 AC 164 ms
11,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

void main() {
  int N = readln.chomp.to!int;
  bool[10] A;
  foreach (i; readln.split.map!(to!int))
    A[i] = true;
  
  int MAX = 5000000;
  auto pt = new bool[](MAX+1);
  foreach (i; 2..MAX+1) 
    pt[i] = true;
  foreach (i; 2..MAX+1)
    if (pt[i])
      foreach (j; iota(i+i, MAX+1, i))
        pt[j] = false;
  int[] primes;
  foreach (i; 2..MAX+1)
    if (pt[i])
      primes ~= i;
  primes = 0 ~ primes ~ [MAX+1];

  bool[10] count;
  
  int left = 1;
  int right = 1;
  int ans = -1;
  while (right < primes.length-1) {
    foreach (c; primes[right].to!string)
      count[c.to!int-48] = true;
    if (all(iota(10).map!(i => A[i]==count[i]))) {
      ans = max(ans, (primes[right+1]-1)-(primes[left-1]+1));
      right += 1;
    }
    else if (all(iota(10).map!(i => !(!A[i] && count[i])))) {
      right += 1;
    }
    else  {
      right += 1;
      left = right;
      foreach (i; 0..10)
        count[i] = false;
    }
  }
  writeln(ans);
}
0