結果

問題 No.12 限定された素数
ユーザー 古寺いろは古寺いろは
提出日時 2015-04-16 00:40:05
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 69 ms / 5,000 ms
コード長 1,150 bytes
コンパイル時間 1,505 ms
コンパイル使用メモリ 162,720 KB
実行使用メモリ 10,456 KB
最終ジャッジ日時 2024-05-03 09:19:06
合計ジャッジ時間 4,178 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
10,328 KB
testcase_01 AC 62 ms
10,208 KB
testcase_02 AC 65 ms
10,332 KB
testcase_03 AC 58 ms
10,204 KB
testcase_04 AC 64 ms
10,332 KB
testcase_05 AC 66 ms
10,332 KB
testcase_06 AC 64 ms
10,332 KB
testcase_07 AC 64 ms
10,332 KB
testcase_08 AC 65 ms
10,456 KB
testcase_09 AC 64 ms
10,332 KB
testcase_10 AC 65 ms
10,292 KB
testcase_11 AC 63 ms
10,336 KB
testcase_12 AC 63 ms
10,332 KB
testcase_13 AC 63 ms
10,328 KB
testcase_14 AC 65 ms
10,208 KB
testcase_15 AC 66 ms
10,204 KB
testcase_16 AC 65 ms
10,204 KB
testcase_17 AC 64 ms
10,204 KB
testcase_18 AC 65 ms
10,204 KB
testcase_19 AC 69 ms
10,208 KB
testcase_20 AC 66 ms
10,188 KB
testcase_21 AC 63 ms
10,328 KB
testcase_22 AC 66 ms
10,208 KB
testcase_23 AC 66 ms
10,204 KB
testcase_24 AC 64 ms
10,200 KB
testcase_25 AC 63 ms
10,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define MAX 5000001

bool dp[MAX];
vector<int> prime(){
	vector<int> ret;
	for (int i = 2; i < MAX; i++)
	{
		if (dp[i]) continue;
		ret.push_back(i);
		for (int j = i + i; j < MAX; j += i)
		{
			dp[j] = true;
		}
	}
	return ret;
}


vector<int> A(10, 0);
vector<int> num(10, 0);

void check(int a, int move){
	while (a != 0){
		num[a % 10] += move;
		a /= 10;
	}
}

int main() {
	int N;
	cin >> N;
	for (int i = 0; i < N; i++)
	{
		int temp;
		cin >> temp;
		A[temp] = 1;
	}
	vector<int> primes = prime();
	int ans = -1;
	int last = 0;
	for (int i = 0; i < primes.size(); i++)
	{
		check(primes[i], 1);
		for (int j = 0; j < 10; j++)
		{
			if (A[j]) continue;
			while (num[j] > 0)
			{
				check(primes[last], -1);
				last++;
			}
		}
		bool flag = true;
		for (int j = 0; j < 10; j++)
		{
			if (!A[j]) continue;
			if (num[j] == 0)
			{
				flag = false;
			}
		}
		if (i >= last && flag){
			int K, L;
			if (last != 0) K = primes[last - 1] + 1;
			else K = 1;
			if (i != primes.size() - 1) L = primes[i + 1] - 1;
			else L = 5000000;
			ans = max(ans, L - K);
		}
	}
	cout << ans << endl;
}



0