結果

問題 No.12 限定された素数
ユーザー tkmst201tkmst201
提出日時 2017-05-17 21:32:42
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 157 ms / 5,000 ms
コード長 1,846 bytes
コンパイル時間 1,291 ms
コンパイル使用メモリ 168,188 KB
実行使用メモリ 18,520 KB
最終ジャッジ日時 2024-05-03 10:45:39
合計ジャッジ時間 5,869 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
18,392 KB
testcase_01 AC 141 ms
18,428 KB
testcase_02 AC 157 ms
18,488 KB
testcase_03 AC 142 ms
18,460 KB
testcase_04 AC 140 ms
18,484 KB
testcase_05 AC 140 ms
18,268 KB
testcase_06 AC 140 ms
18,492 KB
testcase_07 AC 144 ms
18,316 KB
testcase_08 AC 147 ms
18,436 KB
testcase_09 AC 144 ms
18,484 KB
testcase_10 AC 143 ms
18,312 KB
testcase_11 AC 145 ms
18,440 KB
testcase_12 AC 143 ms
18,520 KB
testcase_13 AC 143 ms
18,404 KB
testcase_14 AC 144 ms
18,396 KB
testcase_15 AC 141 ms
18,472 KB
testcase_16 AC 139 ms
18,432 KB
testcase_17 AC 138 ms
18,420 KB
testcase_18 AC 142 ms
18,424 KB
testcase_19 AC 138 ms
18,496 KB
testcase_20 AC 138 ms
18,396 KB
testcase_21 AC 140 ms
18,280 KB
testcase_22 AC 140 ms
18,384 KB
testcase_23 AC 136 ms
18,520 KB
testcase_24 AC 137 ms
18,444 KB
testcase_25 AC 138 ms
18,324 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:47:24: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   47 |         REP(i, n) scanf("%d", a + i);
      |                   ~~~~~^~~~~~~~~~~~~

ソースコード

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