結果

問題 No.12 限定された素数
ユーザー hotpepsihotpepsi
提出日時 2015-03-05 01:59:19
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 963 bytes
コンパイル時間 778 ms
コンパイル使用メモリ 65,528 KB
実行使用メモリ 23,040 KB
最終ジャッジ日時 2024-05-03 09:15:45
合計ジャッジ時間 3,394 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
22,884 KB
testcase_01 AC 66 ms
23,020 KB
testcase_02 AC 57 ms
22,912 KB
testcase_03 AC 61 ms
22,984 KB
testcase_04 AC 66 ms
22,832 KB
testcase_05 AC 63 ms
23,028 KB
testcase_06 AC 57 ms
22,960 KB
testcase_07 AC 57 ms
23,040 KB
testcase_08 AC 54 ms
22,880 KB
testcase_09 AC 55 ms
22,836 KB
testcase_10 AC 60 ms
23,016 KB
testcase_11 AC 67 ms
22,912 KB
testcase_12 AC 57 ms
22,784 KB
testcase_13 AC 55 ms
23,004 KB
testcase_14 AC 71 ms
22,844 KB
testcase_15 AC 52 ms
22,984 KB
testcase_16 AC 52 ms
22,976 KB
testcase_17 AC 53 ms
22,784 KB
testcase_18 AC 54 ms
23,040 KB
testcase_19 AC 54 ms
22,756 KB
testcase_20 AC 53 ms
23,040 KB
testcase_21 AC 55 ms
22,852 KB
testcase_22 AC 61 ms
22,912 KB
testcase_23 AC 55 ms
23,040 KB
testcase_24 AC 61 ms
22,936 KB
testcase_25 AC 52 ms
22,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <sstream>
#include <set>
#include <vector>

using namespace std;

int to_bit(int n) {
	int b = 0;
	while (n > 0) {
		b |= (1 << (n % 10));
		n /= 10;
	}
	return b;
}

int main(int argc, char *argv[]) {
	string s;
	getline(cin, s);
	int N = atoi(s.c_str());
	getline(cin, s);
	stringstream ss(s);
	int bits = 0;
	for (int i = 0; i < N; ++i) {
		int d;
		ss >> d;
		bits |= (1 << d);
	}

	int ans = -1;
	int current_bits = 0;
	int low = 1;
	int primes = 0;
	static int p[5000001] = {};
	for (int i = 2; i <= 5000000; ++i) {
		if (!p[i]) {
			int b = to_bit(i);
			if ((b & bits) != b) {
				if (bits == current_bits) {
					ans = max(ans, (i - 1 - low));
				}
				current_bits = 0;
				low = i + 1;
			} else {
				current_bits |= b;
			}
			for (int j = i * 2; j <= 5000000; j += i) {
				p[j] = 1;
			}
		}
	}
	if (bits == current_bits) {
		ans = max(ans, (5000000 - low));
	}
	cout << ans << endl;
	return 0;
}
0