結果

問題 No.12 限定された素数
ユーザー SSRSSSRS
提出日時 2020-11-08 22:12:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 610 ms / 5,000 ms
コード長 1,393 bytes
コンパイル時間 1,647 ms
コンパイル使用メモリ 175,768 KB
実行使用メモリ 137,472 KB
最終ジャッジ日時 2024-07-22 15:45:09
合計ジャッジ時間 17,682 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 567 ms
137,344 KB
testcase_01 AC 569 ms
137,344 KB
testcase_02 AC 563 ms
137,344 KB
testcase_03 AC 451 ms
137,344 KB
testcase_04 AC 571 ms
137,344 KB
testcase_05 AC 575 ms
137,344 KB
testcase_06 AC 610 ms
137,472 KB
testcase_07 AC 572 ms
137,344 KB
testcase_08 AC 541 ms
137,344 KB
testcase_09 AC 541 ms
137,392 KB
testcase_10 AC 534 ms
137,356 KB
testcase_11 AC 536 ms
137,344 KB
testcase_12 AC 546 ms
137,276 KB
testcase_13 AC 591 ms
137,312 KB
testcase_14 AC 532 ms
137,380 KB
testcase_15 AC 543 ms
137,348 KB
testcase_16 AC 537 ms
137,352 KB
testcase_17 AC 555 ms
137,316 KB
testcase_18 AC 538 ms
137,344 KB
testcase_19 AC 553 ms
137,280 KB
testcase_20 AC 552 ms
137,344 KB
testcase_21 AC 563 ms
137,472 KB
testcase_22 AC 546 ms
137,368 KB
testcase_23 AC 553 ms
137,344 KB
testcase_24 AC 562 ms
137,336 KB
testcase_25 AC 546 ms
137,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N;
  cin >> N;
  vector<int> A(N);
  for (int i = 0; i < N; i++){
    cin >> A[i];
  }
  vector<bool> prime(5000001, true);
  prime[0] = false;
  prime[1] = false;
  for (int i = 2; i <= 5000000; i++){
    if (prime[i]){
      for (int j = i * 2; j <= 5000000; j += i){
        prime[j] = false;
      }
    }
  }
  vector<vector<int>> S(5000000);
  for (int i = 1; i <= 5000001; i++){
    if (prime[i]){
      string s = to_string(i);
      for (char c : s){
        S[i - 1].push_back(c - '0');
      }
    }
  }
  vector<int> T(10, 0);
  for (int i = 0; i < N; i++){
    T[A[i]] = 1;
  }
  int ans = -1;
  int R = 0;
  vector<int> cnt(10, 0);
  for (int L = 0; L < 5000000; L++){
    while (R < 5000000){
      vector<int> cnt2 = cnt;
      for (int x : S[R]){
        cnt2[x]++;
      }
      bool ok = true;
      for (int i = 0; i < 10; i++){
        if (T[i] == 0 && cnt2[i] > 0){
          ok = false;
        }
      }
      if (ok){
        swap(cnt, cnt2);
        R++;
      } else {
        break;
      }
    }
    bool ok = true;
    for (int i = 0; i < 10; i++){
      if (T[i] == 1 && cnt[i] == 0){
        ok = false;
      }
    }
    if (ok){
      ans = max(ans, R - L - 1);
    }
    if (R == L){
      R++;
    } else {
      for (int x : S[L]){
        cnt[x]--;
      }
    }
  }
  cout << ans << endl;
}
0