結果

問題 No.12 限定された素数
ユーザー tkmst201tkmst201
提出日時 2017-05-17 21:32:42
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 237 ms / 5,000 ms
コード長 1,846 bytes
コンパイル時間 1,511 ms
コンパイル使用メモリ 154,780 KB
実行使用メモリ 18,428 KB
最終ジャッジ日時 2023-08-16 00:39:44
合計ジャッジ時間 9,164 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 233 ms
18,092 KB
testcase_01 AC 235 ms
18,104 KB
testcase_02 AC 232 ms
18,100 KB
testcase_03 AC 234 ms
18,244 KB
testcase_04 AC 233 ms
18,096 KB
testcase_05 AC 233 ms
18,168 KB
testcase_06 AC 234 ms
18,208 KB
testcase_07 AC 236 ms
18,168 KB
testcase_08 AC 236 ms
18,156 KB
testcase_09 AC 233 ms
18,100 KB
testcase_10 AC 233 ms
18,208 KB
testcase_11 AC 236 ms
18,172 KB
testcase_12 AC 234 ms
18,172 KB
testcase_13 AC 234 ms
18,108 KB
testcase_14 AC 236 ms
18,428 KB
testcase_15 AC 234 ms
18,164 KB
testcase_16 AC 234 ms
18,216 KB
testcase_17 AC 232 ms
18,164 KB
testcase_18 AC 236 ms
18,240 KB
testcase_19 AC 233 ms
18,160 KB
testcase_20 AC 234 ms
18,168 KB
testcase_21 AC 237 ms
18,164 KB
testcase_22 AC 236 ms
18,240 KB
testcase_23 AC 233 ms
18,168 KB
testcase_24 AC 232 ms
18,168 KB
testcase_25 AC 237 ms
18,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define FOR(i,a,b) for(int i=(a);i<(b);i++)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()

template<typename A, typename B> inline bool chmax(A &a, B b) { if (a<b) { a=b; return 1; } return 0; }
template<typename A, typename B> inline bool chmin(A &a, B b) { if (a>b) { a=b; return 1; } return 0; }

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

const ll INF = 1ll<<29;
const ll MOD = 1000000007;
const double EPS  = 1e-10;

vector<int> sieve(int n) {
	vector<int> res;
	vector<bool> is_prime(n + 1, true);
	
	is_prime[0] = is_prime[1] = false;
	
	for (int i = 2; i * i <= n; i++) if (is_prime[i]) {
		res.push_back(i);
		is_prime[i] = false;
		for (int j = 2; i * j <= n; j++) if (is_prime[i * j]) {
			is_prime[i * j] = false;
		}
	}
	
	REP(i, n + 1) if (is_prime[i]) res.push_back(i);
	sort(res.begin(), res.end());
	return res;
}

int cnt[350000][10];

int main() {
	int n, a[10];
	
	cin >> n;
	REP(i, n) scanf("%d", a + i);
	
	int s = 0;
	REP(i, n) s |= 1<<a[i];
	
	vector<int> prime = sieve(5000000);
	
	REP(i, prime.size()) {
		REP(j, 10) cnt[i + 1][j] = cnt[i][j];
		
		stringstream ss; ss << prime[i];
		string str = ss.str();
		REP(j, str.size()) cnt[i + 1][str[j] - '0']++;
	}
	
	int ans = -1;
	
	int l = 0;
	REP(i, prime.size()) {
		while (l <= i) {
			bool ok = true;
			
			REP(j, 10) if (!(s >> j & 1) && cnt[i + 1][j] - cnt[l][j] > 0) ok = false;
			
			if (ok) break;
			l++;
		}
		
		bool ok = true;
		REP(j, 10) if ((s >> j & 1) && cnt[i + 1][j] - cnt[l][j] == 0) ok = false;
		
		if (ok) {
			int ma = i == prime.size() - 1 ? 5000000 : prime[i + 1] - 1;
			int mi = l == 0 ? 1 : prime[l - 1] + 1;
			
			chmax(ans, ma - mi);
		}
	}
	
	cout << ans << endl;
	
	return 0;
}
0