結果

問題 No.12 限定された素数
ユーザー ぴろずぴろず
提出日時 2014-12-22 15:27:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 276 ms / 5,000 ms
コード長 1,852 bytes
コンパイル時間 2,107 ms
コンパイル使用メモリ 79,352 KB
実行使用メモリ 56,116 KB
最終ジャッジ日時 2024-11-24 07:37:03
合計ジャッジ時間 9,770 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 276 ms
55,464 KB
testcase_01 AC 246 ms
55,904 KB
testcase_02 AC 233 ms
55,244 KB
testcase_03 AC 255 ms
55,916 KB
testcase_04 AC 247 ms
55,704 KB
testcase_05 AC 251 ms
55,440 KB
testcase_06 AC 226 ms
55,500 KB
testcase_07 AC 260 ms
55,864 KB
testcase_08 AC 252 ms
55,548 KB
testcase_09 AC 242 ms
55,528 KB
testcase_10 AC 264 ms
55,796 KB
testcase_11 AC 256 ms
55,568 KB
testcase_12 AC 233 ms
55,736 KB
testcase_13 AC 240 ms
55,800 KB
testcase_14 AC 262 ms
55,864 KB
testcase_15 AC 243 ms
55,828 KB
testcase_16 AC 264 ms
55,648 KB
testcase_17 AC 245 ms
55,356 KB
testcase_18 AC 242 ms
55,240 KB
testcase_19 AC 235 ms
55,240 KB
testcase_20 AC 273 ms
56,116 KB
testcase_21 AC 270 ms
55,572 KB
testcase_22 AC 246 ms
55,624 KB
testcase_23 AC 231 ms
55,568 KB
testcase_24 AC 263 ms
55,588 KB
testcase_25 AC 252 ms
55,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no012;

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

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		boolean[] use = new boolean[10];
		for(int i=0;i<n;i++) {
			use[sc.nextInt()] = true;
		}
		int[] digits = new int[10];
		ArrayList<Integer> primes = Sieve.primeList(5000000);
		int j = 0;
		int ans = -1;
		for(int i=0;i<primes.size();i++) {
			while(j <= primes.size()) {
				boolean expand = true;
				boolean ok = true;
				for(int k=0;k<10;k++) {
					if (!use[k] && digits[k] > 0) {
						expand = false;
						ok = false;
						break;
					}
					if (use[k] && digits[k] == 0) {
						ok = false;
					}
				}
				if (ok) {
					int k = i == 0 ? 1 : primes.get(i-1) + 1;
					int l = j == primes.size() ? 5000000 : primes.get(j) - 1;
					ans = Math.max(ans,l-k);
				}
				if (!expand) {
					break;
				}
				if (j == primes.size()) {
					break;
				}
				int p = primes.get(j);
				while(p > 0) {
					digits[p%10]++;
					p/=10;
				}
				//System.out.println(primes.get(i) + "," + primes.get(j));
				j++;
			}
			int p = primes.get(i);
			while(p > 0) {
				digits[p%10]--;
				p/=10;
			}
		}
		System.out.println(ans);
	}

}
class Sieve {
	public static boolean[] isPrimeArray(int max) {
		boolean[] isPrime = new boolean[max+1];
		Arrays.fill(isPrime, true);
		isPrime[0] = isPrime[1] = false;
		for(int i=2;i*i<=max;i++) {
			if (isPrime[i]) {
				int j = i * 2;
				while(j<=max) {
					isPrime[j] = false;
					j += i;
				}
			}
		}
		return isPrime;
	}
	public static ArrayList<Integer> primeList(int max) {
		boolean[] isPrime = isPrimeArray(max);
		ArrayList<Integer> primeList = new ArrayList<>();
		for(int i=2;i<=max;i++) {
			if (isPrime[i]) {
				primeList.add(i);
			}
		}
		return primeList;
	}
}
0