結果

問題 No.12 限定された素数
ユーザー kou6839kou6839
提出日時 2014-12-27 18:54:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 263 ms / 5,000 ms
コード長 1,256 bytes
コンパイル時間 2,238 ms
コンパイル使用メモリ 79,596 KB
実行使用メモリ 55,608 KB
最終ジャッジ日時 2024-05-03 08:54:55
合計ジャッジ時間 10,067 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 257 ms
55,304 KB
testcase_01 AC 257 ms
55,608 KB
testcase_02 AC 247 ms
55,112 KB
testcase_03 AC 252 ms
55,444 KB
testcase_04 AC 254 ms
55,252 KB
testcase_05 AC 261 ms
55,504 KB
testcase_06 AC 255 ms
55,604 KB
testcase_07 AC 263 ms
55,160 KB
testcase_08 AC 253 ms
55,416 KB
testcase_09 AC 256 ms
55,472 KB
testcase_10 AC 251 ms
55,228 KB
testcase_11 AC 243 ms
55,348 KB
testcase_12 AC 252 ms
55,152 KB
testcase_13 AC 253 ms
55,384 KB
testcase_14 AC 251 ms
55,232 KB
testcase_15 AC 258 ms
55,312 KB
testcase_16 AC 253 ms
55,220 KB
testcase_17 AC 253 ms
55,468 KB
testcase_18 AC 259 ms
55,320 KB
testcase_19 AC 254 ms
55,304 KB
testcase_20 AC 259 ms
55,224 KB
testcase_21 AC 254 ms
55,184 KB
testcase_22 AC 252 ms
55,204 KB
testcase_23 AC 258 ms
55,492 KB
testcase_24 AC 254 ms
55,280 KB
testcase_25 AC 252 ms
55,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;

class Main {
	public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] num = new int[n];
        for(int i=0;i<n;i++){
        	num[i]=sc.nextInt();
        }
        ArrayList<Integer> sosuu = new ArrayList<>();
        sosuu.add(0);
        boolean[] sosu=new boolean[5000001];
        for(int i=2;i<=5000000;i++){
        	if(!sosu[i]){
        		sosuu.add(i);
        		for(int j=i*2;j<=5000000;j+=i){
        			sosu[j]=true;
        		}
        	}
        }
        sosuu.add(5000001);
        int target=0;
        for(int i=0;i<n;i++){
        	target |= (1<<num[i]);
        }
        
        int rou=1;
        int hi = 1;
        int cur =0;
        int ans=-1;
        for(int i=1;i<sosuu.size()-1;i++){
        	int temp = sosuu.get(i);
        	int temp1=0;
        	while(temp>0){
        		temp1 |=(1<<(temp%10));
        		temp/=10;
        	}
        	cur |= temp1;
        	hi=i;
        	if(target==cur){
        		ans=Math.max(ans, sosuu.get(hi+1)-sosuu.get(rou-1)-2);
        	}else if((target|cur)-target>0){
        		rou=hi=i+1;
        		cur=0;
        	}
        }
        System.out.println(ans);
        
    }
}
0