結果

問題 No.12 限定された素数
ユーザー purple_jwlpurple_jwl
提出日時 2015-03-07 15:53:26
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 1,285 bytes
コンパイル時間 1,147 ms
コンパイル使用メモリ 158,808 KB
実行使用メモリ 8,416 KB
最終ジャッジ日時 2024-05-03 09:16:00
合計ジャッジ時間 3,165 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
8,296 KB
testcase_01 AC 48 ms
8,416 KB
testcase_02 AC 47 ms
8,356 KB
testcase_03 AC 47 ms
8,264 KB
testcase_04 AC 47 ms
8,328 KB
testcase_05 AC 47 ms
8,248 KB
testcase_06 AC 49 ms
8,356 KB
testcase_07 AC 48 ms
8,344 KB
testcase_08 AC 49 ms
8,412 KB
testcase_09 AC 46 ms
8,136 KB
testcase_10 AC 47 ms
8,384 KB
testcase_11 AC 48 ms
8,320 KB
testcase_12 AC 48 ms
8,376 KB
testcase_13 AC 47 ms
8,304 KB
testcase_14 AC 47 ms
8,296 KB
testcase_15 AC 46 ms
8,188 KB
testcase_16 AC 50 ms
8,340 KB
testcase_17 AC 47 ms
8,180 KB
testcase_18 AC 46 ms
8,176 KB
testcase_19 AC 46 ms
8,316 KB
testcase_20 AC 46 ms
8,296 KB
testcase_21 AC 48 ms
8,156 KB
testcase_22 AC 46 ms
8,292 KB
testcase_23 AC 45 ms
8,104 KB
testcase_24 AC 48 ms
8,260 KB
testcase_25 AC 48 ms
8,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define REP(i, x, n) for(int i = x; i < (int)(n); i++)
#define rep(i, n) REP(i, 0, n)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define F first
#define S second
#define mp make_pair

using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> P;

const int MAX = 5000000;

bool isPrime[MAX + 1];

void sieve(int N){
  for(int i = 0; i <= N; i++) {
    isPrime[i] = true;
  }
  
  isPrime[0] = isPrime[1] = false;

  for(int i = 2; i <= N; i++) {
    if(!isPrime[i]) continue;
    for(int j = i + i; j <= N; j += i) {
      isPrime[j] = false;
    }
  }
}

int func(int v) {
  int res = 0;
  while(v) {
    int tmp = v % 10;
    v /= 10;
    res |= (1 << tmp);
  }
  return res;
}

int main() {
  // ios_base::sync_with_stdio(false);
  sieve(MAX);

  int N;
  cin >> N;

  int ok = 0;
  rep(i, N) {
    int A;
    cin >> A;
    ok |= (1 << A);
  }

  int ng = ((1 << 10) - 1) ^ ok;
  int ans = -1;
  int K = -1;
  int flg = 0;
  for(int i = 1; i <= MAX; i++) {
    if(K == -1) K = i;

    if(isPrime[i]) flg |= func(i);
    
    if(flg & ng) {
      K = -1;
      flg = 0;
    }
    else if(flg == ok) {
      ans = max(ans, i - K);
    }
  }

  cout << ans << endl;
  
  return 0;
}
0