結果

問題 No.12 限定された素数
ユーザー scachescache
提出日時 2014-11-12 03:33:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 268 ms / 5,000 ms
コード長 1,413 bytes
コンパイル時間 2,245 ms
コンパイル使用メモリ 78,600 KB
実行使用メモリ 55,648 KB
最終ジャッジ日時 2024-05-03 08:52:19
合計ジャッジ時間 10,256 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 261 ms
55,648 KB
testcase_01 AC 256 ms
55,116 KB
testcase_02 AC 253 ms
55,388 KB
testcase_03 AC 259 ms
55,248 KB
testcase_04 AC 256 ms
55,396 KB
testcase_05 AC 252 ms
54,980 KB
testcase_06 AC 258 ms
55,428 KB
testcase_07 AC 261 ms
55,236 KB
testcase_08 AC 256 ms
55,288 KB
testcase_09 AC 263 ms
55,296 KB
testcase_10 AC 260 ms
54,928 KB
testcase_11 AC 261 ms
55,156 KB
testcase_12 AC 264 ms
55,280 KB
testcase_13 AC 264 ms
55,600 KB
testcase_14 AC 266 ms
55,548 KB
testcase_15 AC 261 ms
55,544 KB
testcase_16 AC 268 ms
55,144 KB
testcase_17 AC 255 ms
55,264 KB
testcase_18 AC 256 ms
55,136 KB
testcase_19 AC 258 ms
55,048 KB
testcase_20 AC 264 ms
55,276 KB
testcase_21 AC 260 ms
55,312 KB
testcase_22 AC 263 ms
55,172 KB
testcase_23 AC 267 ms
55,168 KB
testcase_24 AC 260 ms
55,404 KB
testcase_25 AC 259 ms
55,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Main p = new Main();
	}

	public Main() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		for(int i=0;i<n;i++){
			a[i] =sc.nextInt();
		}
		solve(a);
	}

	public void solve(int[] a) {		
		int target = 0;
		for(int i=0;i<a.length;i++){
			target |= (1<<a[i]);
		}
		
		boolean[] hurui = new boolean[5000001];
		Arrays.fill(hurui, 2, hurui.length, true);
		ArrayList<Integer> primeList = new ArrayList<Integer>(); 
		primeList.add(0);
		for(int i=2;i<hurui.length;i++){
			if(hurui[i]){
				primeList.add(i);
				for(int j=i*2;j<hurui.length;j+=i){
					hurui[j] = false;
				}
			}
		}
		primeList.add(5000001);
		
		int cur = 0;		
		int res = 0;
		int low = 1;
		int high = 1;
		
		for(int i=1;i<primeList.size()-1;i++){
			int curNum = primeList.get(i);
			int curShift = 0;
			while(curNum>0){
				curShift |= (1<<(curNum%10));
				curNum/=10;
			}
			
			cur |= curShift;
			high = i;
			
			if(target == cur){
				res = Math.max(res, primeList.get(high+1)-primeList.get(low-1)-2);
			}else if((target|cur)-target > 0){
				low = high = i+1;
				cur = 0;
			}
		}
		
		if(res==0)
			System.out.println(-1);
		else
			System.out.println(res);
		
	}

}
0