結果

問題 No.12 限定された素数
ユーザー koba-e964koba-e964
提出日時 2015-07-07 14:35:54
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 100 ms / 5,000 ms
コード長 905 bytes
コンパイル時間 585 ms
コンパイル使用メモリ 66,476 KB
実行使用メモリ 23,044 KB
最終ジャッジ日時 2024-05-03 09:28:26
合計ジャッジ時間 3,882 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
22,992 KB
testcase_01 AC 96 ms
22,828 KB
testcase_02 AC 95 ms
22,896 KB
testcase_03 AC 100 ms
22,816 KB
testcase_04 AC 97 ms
23,032 KB
testcase_05 AC 95 ms
22,892 KB
testcase_06 AC 93 ms
23,044 KB
testcase_07 AC 94 ms
23,008 KB
testcase_08 AC 94 ms
22,836 KB
testcase_09 AC 96 ms
22,960 KB
testcase_10 AC 98 ms
22,968 KB
testcase_11 AC 94 ms
22,904 KB
testcase_12 AC 97 ms
22,984 KB
testcase_13 AC 96 ms
22,984 KB
testcase_14 AC 98 ms
22,896 KB
testcase_15 AC 95 ms
22,884 KB
testcase_16 AC 95 ms
22,808 KB
testcase_17 AC 95 ms
22,808 KB
testcase_18 AC 97 ms
22,872 KB
testcase_19 AC 95 ms
22,808 KB
testcase_20 AC 92 ms
23,032 KB
testcase_21 AC 93 ms
22,920 KB
testcase_22 AC 93 ms
22,732 KB
testcase_23 AC 95 ms
22,700 KB
testcase_24 AC 93 ms
22,864 KB
testcase_25 AC 93 ms
22,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <iostream>
#include <vector>

#define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++)

using namespace std;

const int N = 5000001;
int tbl[N];

int dset(int v) {
  int bits = 0;
  while (v > 0) {
    bits |= 1 << (v % 10);
    v /= 10;
  }
  return bits;
}

void solve(int bits) {
  tbl[0] = tbl[1] = 0;
  
  REP(i, 2, N) {
    tbl[i] = dset(i);
  }
  REP(i, 2, sqrt(N) + 1) {
    if (tbl[i]) {
      REP(j, 2, (N + i - 1) / i) {
	tbl[i * j] = 0;
      }
    }
  }
  int ma = -1;
  REP(i, 1, N) {
    int acc = 0;
    int j = i;
    for (; j < N; ++j) {
      if (tbl[j] & ~bits) {
	break;
      }
      acc |= tbl[j];
      if (acc == bits) {
	ma = max(ma, j - i);
      }
    }
    i = j;
  }
  cout << ma << endl;
}

int main(void){
  int sn;
  cin >> sn;
  int bits = 0;
  REP(i, 0, sn) {
    int y;
    cin >> y;
    bits |= 1 << y;
  }
  solve(bits);
}
0