結果

問題 No.12 限定された素数
ユーザー srup٩(๑`н´๑)۶srup٩(๑`н´๑)۶
提出日時 2016-09-30 01:14:20
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 582 ms / 5,000 ms
コード長 1,510 bytes
コンパイル時間 643 ms
コンパイル使用メモリ 69,204 KB
実行使用メモリ 8,492 KB
最終ジャッジ日時 2024-11-24 08:58:40
合計ジャッジ時間 9,774 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 256 ms
8,340 KB
testcase_01 AC 322 ms
8,492 KB
testcase_02 AC 246 ms
8,392 KB
testcase_03 AC 582 ms
8,448 KB
testcase_04 AC 261 ms
8,448 KB
testcase_05 AC 361 ms
8,364 KB
testcase_06 AC 335 ms
8,448 KB
testcase_07 AC 378 ms
8,448 KB
testcase_08 AC 297 ms
8,320 KB
testcase_09 AC 287 ms
8,448 KB
testcase_10 AC 340 ms
8,448 KB
testcase_11 AC 440 ms
8,320 KB
testcase_12 AC 365 ms
8,448 KB
testcase_13 AC 341 ms
8,448 KB
testcase_14 AC 311 ms
8,320 KB
testcase_15 AC 340 ms
8,448 KB
testcase_16 AC 379 ms
8,448 KB
testcase_17 AC 298 ms
8,448 KB
testcase_18 AC 235 ms
8,448 KB
testcase_19 AC 232 ms
8,448 KB
testcase_20 AC 264 ms
8,448 KB
testcase_21 AC 284 ms
8,448 KB
testcase_22 AC 240 ms
8,424 KB
testcase_23 AC 239 ms
8,448 KB
testcase_24 AC 268 ms
8,448 KB
testcase_25 AC 362 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

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()){//含んでいけない文字を含んでしまっている
			//素数rで値を条件を満たさなくなったので、lをr+1まで動かす
			rep(i, 10) cnt[i] = 0;
			l = r + 1;
		}

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