結果

問題 No.12 限定された素数
ユーザー t8m8⛄️t8m8⛄️
提出日時 2016-02-12 19:12:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 274 ms / 5,000 ms
コード長 1,611 bytes
コンパイル時間 3,500 ms
コンパイル使用メモリ 82,664 KB
実行使用メモリ 64,432 KB
最終ジャッジ日時 2024-05-03 09:45:07
合計ジャッジ時間 11,328 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 263 ms
64,360 KB
testcase_01 AC 262 ms
63,588 KB
testcase_02 AC 258 ms
63,776 KB
testcase_03 AC 128 ms
53,824 KB
testcase_04 AC 256 ms
63,636 KB
testcase_05 AC 269 ms
63,796 KB
testcase_06 AC 274 ms
64,184 KB
testcase_07 AC 268 ms
64,212 KB
testcase_08 AC 260 ms
63,952 KB
testcase_09 AC 274 ms
64,268 KB
testcase_10 AC 257 ms
63,712 KB
testcase_11 AC 254 ms
63,900 KB
testcase_12 AC 265 ms
63,864 KB
testcase_13 AC 261 ms
63,500 KB
testcase_14 AC 273 ms
64,240 KB
testcase_15 AC 267 ms
64,324 KB
testcase_16 AC 273 ms
63,632 KB
testcase_17 AC 274 ms
64,124 KB
testcase_18 AC 258 ms
63,636 KB
testcase_19 AC 259 ms
63,932 KB
testcase_20 AC 274 ms
64,432 KB
testcase_21 AC 260 ms
64,060 KB
testcase_22 AC 252 ms
63,984 KB
testcase_23 AC 263 ms
63,768 KB
testcase_24 AC 268 ms
64,040 KB
testcase_25 AC 269 ms
63,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import java.math.*;

public class No0012 {

	static final Scanner in = new Scanner(System.in);
	static final PrintWriter out = new PrintWriter(System.out,false);
	static boolean debug = false;

	static void solve() {
		int n = in.nextInt();
		int bit = 0;
		for (int i=0; i<n; i++) {
			bit |= 1<<in.nextInt();
		}

		if (bit == 1023) {
			out.println("4999999");
			return;
		}

		BitSet isp = new BitSet();
		isp.flip(2, 5000001);
		ArrayList<Integer> primes = new ArrayList<>();
		for (int i=2; i*i<=5000001; i=isp.nextSetBit(i+1)) {
			for (int j=i+i; j<5000001; j+=i) {
				isp.set(j, false);
			}
		}

		for (int i=2; i>=0; i=isp.nextSetBit(i+1)) {
			primes.add(i);
		}

		dump(isp.cardinality());

		dump(primes);

		int m = primes.size();
		int[] mask = new int[m];
		int pos = 0;
		for (int p : primes) {
			int b = 0;
			while (p > 0) {
				b |= 1<<(p%10);
				p /= 10;
			}
			mask[pos++] = b;
		}


		int ans = -1;
		for (int i=0; i<m; i++) {
			int b = 0;
			for (int j=0; i+j<m; j++) {
				b |= mask[i+j];
				if ((b&(~bit)) > 0) break;
				if (b == bit) {
					ans = Math.max(ans, (i+j+1 < m ? primes.get(i+j+1)-1 : 499999) - (i > 0 ? primes.get(i-1)+1 : 1));
				}
			}
		}

		out.println(ans);
	}

	public static void main(String[] args) {
		debug = args.length > 0;
		long start = System.currentTimeMillis();

		solve();
		out.flush();

		long end = System.currentTimeMillis();
		dump((end-start) + "ms");
		in.close();
		out.close();
	}

	static void dump(Object... o) { if (debug) System.err.println(Arrays.deepToString(o)); }
}
0