結果

問題 No.12 限定された素数
ユーザー core123core123
提出日時 2019-04-18 16:48:18
言語 Java
(openjdk 23)
結果
AC  
実行時間 613 ms / 5,000 ms
コード長 2,101 bytes
コンパイル時間 4,553 ms
コンパイル使用メモリ 80,688 KB
実行使用メモリ 68,424 KB
最終ジャッジ日時 2024-11-24 10:14:50
合計ジャッジ時間 19,658 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 495 ms
66,332 KB
testcase_01 AC 575 ms
68,052 KB
testcase_02 AC 487 ms
66,220 KB
testcase_03 AC 548 ms
65,660 KB
testcase_04 AC 504 ms
66,588 KB
testcase_05 AC 549 ms
67,608 KB
testcase_06 AC 555 ms
67,628 KB
testcase_07 AC 514 ms
65,128 KB
testcase_08 AC 532 ms
67,236 KB
testcase_09 AC 579 ms
68,216 KB
testcase_10 AC 541 ms
66,984 KB
testcase_11 AC 550 ms
65,216 KB
testcase_12 AC 550 ms
65,604 KB
testcase_13 AC 604 ms
68,176 KB
testcase_14 AC 600 ms
68,424 KB
testcase_15 AC 613 ms
68,368 KB
testcase_16 AC 527 ms
65,004 KB
testcase_17 AC 445 ms
62,768 KB
testcase_18 AC 493 ms
66,176 KB
testcase_19 AC 500 ms
66,144 KB
testcase_20 AC 492 ms
66,692 KB
testcase_21 AC 512 ms
67,296 KB
testcase_22 AC 488 ms
66,288 KB
testcase_23 AC 499 ms
66,272 KB
testcase_24 AC 484 ms
66,608 KB
testcase_25 AC 546 ms
67,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.*;
import static java.lang.Math.*;
public class Main{
	public static void main(String... args){
		Scanner sc=new Scanner(System.in);
		boolean[] isPrime=new boolean[5000001];
		Arrays.fill(isPrime,true);
		isPrime[0]=false;
		isPrime[1]=false;
		for(int i=2;i<isPrime.length;i++){
			for(int j=2*i;j<isPrime.length;j+=i){
				isPrime[j]=false;
			}
		}
		List<Integer> primes=new ArrayList<>();
		for(int i=0;i<isPrime.length;i++){
			if(isPrime[i])primes.add(i);
		}
		
		
		int n=sc.nextInt();
		boolean[] canUses=new boolean[10];
		for(int i=0;i<n;i++){
			canUses[sc.nextInt()]=true;
		}
		int max=-1;
		main:for(int i=0;i<primes.size();i++){
			if(!canUse(primes.get(i),canUses))continue;
			Set<Integer> set=new HashSet<>();
			int j=i;
			while(j<primes.size()&&canUse(primes.get(j),canUses)){
				for(char c:Integer.toString(primes.get(j)).toCharArray()){
					set.add(c-'0');
				}
				j++;
			}
			//put("(i,j)=(%d,%d)",i,j);
			for(int k=0;k<10;k++){
				if(!canUses[k])continue;
				if(!set.contains(k)){
					i=j;
					continue main;
				}
			}
			int l=i-1<0?1:primes.get(i-1)+1;
			int r=j>=primes.size()?5000000:primes.get(j)-1;
			//put("(l,r)=(%d,%d)",l,r);
			max=max(max,r-l);
			i=j;
		}
		put(max);
		
	}
	public static boolean canUse(int x,boolean[] canUses){
		for(char c:Integer.toString(x).toCharArray()){
			if(!canUses[c-'0'])return false;
		}
		return true;
	}
	
	public static class Pair{
		final int x,y;
		Pair(int x,int y){
			this.x=x;
			this.y=y;
		}
		@Override
		public String toString(){
			return String.format("Pair(%d,%d)",x,y);
		}
	}
	public static void print(Object object){
        System.out.print(object);
    }
    public static void put(Object object) {
        System.out.println(object);
    }
    public static void put(){
        System.out.println();
    }
 
    public static void print(String format,Object... args){
        System.out.print(String.format(format,args));
    }
    public static void put(String format,Object... args) {
        System.out.println(String.format(format,args));
    }
}
0