結果

問題 No.12 限定された素数
ユーザー srup٩(๑`н´๑)۶srup٩(๑`н´๑)۶
提出日時 2016-09-30 00:46:07
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,564 bytes
コンパイル時間 681 ms
コンパイル使用メモリ 70,232 KB
実行使用メモリ 8,588 KB
最終ジャッジ日時 2024-06-01 08:31:49
合計ジャッジ時間 10,500 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 311 ms
8,448 KB
testcase_01 AC 338 ms
8,448 KB
testcase_02 AC 267 ms
8,420 KB
testcase_03 AC 541 ms
8,408 KB
testcase_04 AC 280 ms
8,432 KB
testcase_05 AC 343 ms
8,416 KB
testcase_06 AC 341 ms
8,464 KB
testcase_07 AC 384 ms
8,588 KB
testcase_08 AC 307 ms
8,296 KB
testcase_09 AC 309 ms
8,428 KB
testcase_10 AC 333 ms
8,508 KB
testcase_11 AC 429 ms
8,456 KB
testcase_12 AC 361 ms
8,468 KB
testcase_13 AC 344 ms
8,500 KB
testcase_14 AC 319 ms
8,476 KB
testcase_15 AC 340 ms
8,528 KB
testcase_16 AC 377 ms
8,500 KB
testcase_17 AC 378 ms
8,524 KB
testcase_18 AC 260 ms
8,428 KB
testcase_19 AC 260 ms
8,440 KB
testcase_20 AC 270 ms
8,360 KB
testcase_21 AC 317 ms
8,532 KB
testcase_22 AC 275 ms
8,484 KB
testcase_23 AC 276 ms
8,396 KB
testcase_24 AC 342 ms
8,464 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <cstdio>
#include <set>
using namespace std;
typedef long long ll;
#define rep(i,n) for(int i=0;i<(n);i++)
const int INF = 1e9;

bool isprime[5000010];
//エラトテネス
void eratos(int m){
    for (int i = 0; i <= m; ++i) isprime[i] = true;
    isprime[0] = isprime[1] = false;
    //iを残してiの倍数を消していく
    for (int i = 2; i <= m; ++i){
        if(isprime[i]){
            for (int j = 2 * i; j <= m; j += i){
                isprime[j] = false;
            }
        }
    }
}

int n;
set<int> a;
int cnt[10];

bool hantei(){
	rep(i, 10){
		if(a.count(i) == 0){//含んでいけない数
			if(cnt[i] != 0) return false;
		}
	}
	return true;
}

bool ok(){
	rep(i, 10){
		if(a.count(i) != 0){
			if(cnt[i] == 0) return false;
		}
	}
	return true;
}

int main(void){
	cin >> n;
	rep(i, n){
		int t; cin >> t;
		a.insert(t);
	}
	eratos(5000000);

	rep(i, 10) cnt[i] = 0;
	int ans = -1;
	//[l, r]でしゃくとり法
	int l = 1;
	for (int r = 1; r <= 5000000; ++r){//右を伸ばせるだけのばす
		if(isprime[r]){
			string tm = to_string(r);
			rep(i, tm.size()){
				cnt[tm[i] - '0']++;
			}
		}

		if(!hantei()){//含んでいけない文字を含んでしまっているので、左を縮める
			while(!isprime[l]) l++;//素数のつぎの数まで縮める
			string tmp = to_string(l);
			rep(j, tmp.size()){
				cnt[tmp[j] - '0']--;
			}
			l++;
		}

		if(ok()){//条件を満たす
			ans = max(ans, r - l);
		}
	}
	printf("%d\n", ans);
}
0