結果

問題 No.12 限定された素数
ユーザー yuustiyuusti
提出日時 2015-02-18 20:23:15
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,639 bytes
コンパイル時間 705 ms
コンパイル使用メモリ 87,768 KB
実行使用メモリ 23,228 KB
最終ジャッジ日時 2023-09-06 02:05:17
合計ジャッジ時間 3,655 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 64 ms
22,892 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 58 ms
22,892 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <sstream>
#include <cstring>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <numeric>
#include <cctype>
#include <tuple>
#include <climits>
#include <bitset>
#include <cassert>
#include <random>

#ifdef _MSC_VER
#include <agents.h>
#endif

#define FOR(i, a, b) for(int i = (a); i < (int)(b); ++i)
#define rep(i, n) FOR(i, 0, n)
#define ALL(v) v.begin(), v.end()
#define REV(v) v.rbegin(), v.rend()
#define MEMSET(v, s) memset(v, s, sizeof(v))
#define UNIQUE(v) (v).erase(unique(ALL(v)), (v).end())
#define MP make_pair
#define MT make_tuple

using namespace std;

typedef long long ll;
typedef pair<int, int> P;

const int N = 5e6+1;
int np[N];

int need[10];
int cnt[10];

bool can(){
	rep(i, 10) if (!need[i] && cnt[i]) return false;
	return true;
}

bool check(){
	rep(i, 10) if (need[i] != (cnt[i] >= 1)) return false;
	return true;
}

void f(int val, int k){
	if (!val) return;
	cnt[val % 10] += k;
	f(val / 10, k);
}

int main(){
	cin.tie(0);
	ios::sync_with_stdio(false);

	for (int i = 2; i*i < N; ++i){
		if (!np[i]) for (int j = i * 2; j < N; j += i) np[j] = 1;
	}

	int n;
	cin >> n;
	rep(i, n){
		int x;
		cin >> x;
		need[x] = 1;
	}

	int l = 1, r = 1;
	int ans = -1;
	while (1){
		while (r < n && can()){
			if(check()) ans = max(ans, r - l - 1);
			if (!np[r]) f(r, 1);
			++r;
		}
		if (check()) ans = max(ans, r - l - 1);

		if (l >= r) break;

		if (!np[l]) f(l, -1);
		++l;
		if(check()) ans = max(ans, r - l - 1);
	}

	cout << ans << endl;

	return 0;
}
0