結果

問題 No.12 限定された素数
ユーザー uafr_csuafr_cs
提出日時 2015-12-06 21:50:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 582 ms / 5,000 ms
コード長 2,086 bytes
コンパイル時間 2,660 ms
コンパイル使用メモリ 79,340 KB
実行使用メモリ 87,916 KB
最終ジャッジ日時 2024-05-03 09:38:10
合計ジャッジ時間 18,356 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 551 ms
87,796 KB
testcase_01 AC 520 ms
87,372 KB
testcase_02 AC 493 ms
84,896 KB
testcase_03 AC 582 ms
86,552 KB
testcase_04 AC 525 ms
87,680 KB
testcase_05 AC 542 ms
87,768 KB
testcase_06 AC 524 ms
87,768 KB
testcase_07 AC 540 ms
87,368 KB
testcase_08 AC 531 ms
87,824 KB
testcase_09 AC 521 ms
87,588 KB
testcase_10 AC 541 ms
87,616 KB
testcase_11 AC 568 ms
87,852 KB
testcase_12 AC 533 ms
87,656 KB
testcase_13 AC 535 ms
87,776 KB
testcase_14 AC 542 ms
87,768 KB
testcase_15 AC 523 ms
87,696 KB
testcase_16 AC 558 ms
87,668 KB
testcase_17 AC 557 ms
84,992 KB
testcase_18 AC 529 ms
87,684 KB
testcase_19 AC 523 ms
87,724 KB
testcase_20 AC 511 ms
87,476 KB
testcase_21 AC 514 ms
87,700 KB
testcase_22 AC 547 ms
87,688 KB
testcase_23 AC 550 ms
87,552 KB
testcase_24 AC 575 ms
87,916 KB
testcase_25 AC 558 ms
87,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Scanner;
import java.util.Set;
import java.util.TreeSet;

public class Main {
	
	public static void update(int[] count, String str, boolean add){
		for(final char ch : str.toCharArray()){
			count[Character.getNumericValue(ch)] += (add ? 1 : -1);
		}
	}
	
	public static boolean valid_range(int[] count, Set<Integer> valid){
		for(int i = 0; i < count.length; i++){
			if(valid.contains(i)  && count[i] <= 0){ return false; }
			if(!valid.contains(i) && count[i]  > 0){ return false; }
		}
		
		return true;
	}
	
	public static boolean less_range(int[] count, Set<Integer> valid){
		for(int i = 0; i < count.length; i++){
			if(!valid.contains(i) && count[i]  > 0){ return false; }
		}
		
		return true;
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		Set<Integer> valid_set = new HashSet<Integer>();
		for(int i = 0; i < N; i++){
			valid_set.add(sc.nextInt());
		}
		
		final int MAX = 5000000;
		TreeSet<Integer> prime_tree = new TreeSet<Integer>();
		boolean[] is_prime = new boolean[MAX + 1];
		Arrays.fill(is_prime, true);
		is_prime[0] = is_prime[1] = false;
		
		for(int i = 2; i <= MAX; i++){
			if(!is_prime[i]){ continue; }
			
			prime_tree.add(i);
			for(int j = i * 2; j <= MAX; j += i){
				is_prime[j] = false;
			}
		}
		//System.out.println(valid_set);
		
		int[] count = new int[10];
		int answer = -1;
		
		int prev = 1;
		for(int start = 1; start <= MAX; start++){
			if(is_prime[start]){
				update(count, Integer.toString(start), true);
			}
			
			if(valid_range(count, valid_set)){
				//System.out.println(prev + " " + start);
				answer = Math.max(answer, start - prev);
			}else{
				if(is_prime[start] && !less_range(count, valid_set)){
					prev = start + 1;
					Arrays.fill(count, 0);
				}
			}
		}
		if(prev < MAX){
			//System.out.println(prev);
			answer = Math.max(answer, MAX - prev);
		}
		
		System.out.println(answer);
	}

}
0