結果

問題 No.12 限定された素数
ユーザー not_522not_522
提出日時 2015-08-19 00:45:24
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 201 ms / 5,000 ms
コード長 2,431 bytes
コンパイル時間 1,559 ms
コンパイル使用メモリ 172,172 KB
実行使用メモリ 70,216 KB
最終ジャッジ日時 2024-05-03 09:33:23
合計ジャッジ時間 6,438 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
69,936 KB
testcase_01 AC 149 ms
70,216 KB
testcase_02 AC 145 ms
69,904 KB
testcase_03 AC 201 ms
69,136 KB
testcase_04 AC 146 ms
69,780 KB
testcase_05 AC 163 ms
70,200 KB
testcase_06 AC 181 ms
68,728 KB
testcase_07 AC 182 ms
69,516 KB
testcase_08 AC 151 ms
68,704 KB
testcase_09 AC 156 ms
69,120 KB
testcase_10 AC 158 ms
69,724 KB
testcase_11 AC 192 ms
69,468 KB
testcase_12 AC 176 ms
69,744 KB
testcase_13 AC 164 ms
68,736 KB
testcase_14 AC 151 ms
69,400 KB
testcase_15 AC 160 ms
68,972 KB
testcase_16 AC 195 ms
68,700 KB
testcase_17 AC 133 ms
69,164 KB
testcase_18 AC 133 ms
68,804 KB
testcase_19 AC 138 ms
69,820 KB
testcase_20 AC 148 ms
69,936 KB
testcase_21 AC 149 ms
70,144 KB
testcase_22 AC 143 ms
69,504 KB
testcase_23 AC 144 ms
69,172 KB
testcase_24 AC 138 ms
68,740 KB
testcase_25 AC 161 ms
69,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

class Prime {
private:
  vector<long long> div;
  
public:
  Prime(long long n = 0) {
    for (long long i = 0; i <= n; ++i) div.emplace_back(i);
    for (long long i = 2; i <= n / i; ++i) if (div[i] == i) {
      for (long long j = i * i; j <= n; j += i) div[j] = i;
    }
  }
  
  bool isPrime(long long n) const {
    if (n <= 1) return false;
    if (n < (long long)div.size()) return div[n] == n;
    for (long long i = 2; i <= n / i; ++i) if (n % i == 0) return false;
    return true;
  }
  
  vector<long long> factor(long long n) const {
    vector<long long> res;
    for (long long i = 2; i <= n / i && n >= (long long)div.size(); ++i) {
      while (n % i == 0) {
        res.emplace_back(i);
        n /= i;
      }
    }
    if (n >= max((long long)div.size(), 2ll)) {
      res.emplace_back(n);
    } else {
      while (n > 1) {
        res.emplace_back(div[n]);
        n /= div[n];
      }
    }
    sort(res.begin(), res.end());
    return res;
  }
  
  vector<long long> primeFactor(long long n) const {
    vector<long long> res;
    for (long long i = 2; i <= n / i && n >= (long long)div.size(); ++i) {
      if (n % i) continue;
      res.emplace_back(i);
      while (n % i == 0) n /= i;
    }
    if (n >= max((long long)div.size(), 2ll)) {
      res.emplace_back(n);
    } else {
      while (n > 1) {
        long long d = div[n];
        res.emplace_back(d);
        while (n % d == 0) n /= d;
      }
    }
    sort(res.begin(), res.end());
    return res;
  }

  vector<long long> divisor(long long n) const {
    vector<long long> res;
    for (long long i = 1; i <= n / i; ++i) {
      if (n % i == 0) {
        res.emplace_back(i);
        if (i != n / i) res.emplace_back(n / i);
      }
    }
    sort(res.begin(), res.end());
    return res;
  }
};

int main() {
  Prime prime(5000000);
  int n;
  cin >> n;
  vector<int> a(n);
  for (int& i : a) cin >> i;
  set<int> b(a.begin(), a.end()), c;
  int res = -1, p = 1;
  for (int i = 1; i <= 5000000; ++i) {
    if (!prime.isPrime(i)) continue;
    bool ok = true;
    for (int ii = i; ii; ii /= 10) {
      if (b.count(ii % 10) == 0) ok = false;
    }
    if (ok) {
      for (int ii = i; ii; ii /= 10) c.insert(ii % 10);
    } else {
      if (b == c) res = max(res, i - 1 - p);
      p = i + 1;
      c = set<int>();
    }
  }
  if (b == c) res = max(res, 5000000 - p);
  cout << res << endl;
}
0