結果

問題 No.308 素数は通れません
ユーザー ぴろずぴろず
提出日時 2015-12-01 10:42:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,465 bytes
コンパイル時間 2,371 ms
コンパイル使用メモリ 79,756 KB
実行使用メモリ 41,508 KB
最終ジャッジ日時 2024-09-14 06:49:36
合計ジャッジ時間 19,057 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,148 KB
testcase_01 AC 130 ms
41,352 KB
testcase_02 AC 134 ms
41,152 KB
testcase_03 AC 131 ms
40,936 KB
testcase_04 AC 132 ms
41,196 KB
testcase_05 AC 119 ms
40,036 KB
testcase_06 AC 131 ms
41,004 KB
testcase_07 AC 131 ms
41,000 KB
testcase_08 AC 132 ms
41,020 KB
testcase_09 AC 132 ms
41,324 KB
testcase_10 AC 135 ms
41,248 KB
testcase_11 WA -
testcase_12 AC 132 ms
41,176 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 131 ms
41,284 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 136 ms
40,952 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 134 ms
41,096 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 133 ms
41,204 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 134 ms
41,172 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 134 ms
41,204 KB
testcase_37 AC 120 ms
40,172 KB
testcase_38 AC 135 ms
41,032 KB
testcase_39 AC 130 ms
41,368 KB
testcase_40 AC 133 ms
40,892 KB
testcase_41 AC 130 ms
41,064 KB
testcase_42 AC 129 ms
40,944 KB
testcase_43 AC 132 ms
40,976 KB
testcase_44 AC 130 ms
40,988 KB
testcase_45 AC 121 ms
40,188 KB
testcase_46 AC 132 ms
41,012 KB
testcase_47 AC 133 ms
41,060 KB
testcase_48 AC 132 ms
41,172 KB
testcase_49 AC 132 ms
41,288 KB
testcase_50 AC 131 ms
41,064 KB
testcase_51 AC 131 ms
41,132 KB
testcase_52 AC 132 ms
40,800 KB
testcase_53 AC 134 ms
41,128 KB
testcase_54 AC 132 ms
40,976 KB
testcase_55 AC 133 ms
40,968 KB
testcase_56 AC 132 ms
41,148 KB
testcase_57 AC 131 ms
40,948 KB
testcase_58 AC 133 ms
41,112 KB
testcase_59 AC 133 ms
40,968 KB
testcase_60 AC 132 ms
41,204 KB
testcase_61 AC 129 ms
41,160 KB
testcase_62 AC 131 ms
40,984 KB
testcase_63 AC 137 ms
41,208 KB
testcase_64 AC 132 ms
41,040 KB
testcase_65 AC 133 ms
41,116 KB
testcase_66 AC 130 ms
41,232 KB
testcase_67 AC 131 ms
41,208 KB
testcase_68 RE -
testcase_69 RE -
testcase_70 RE -
testcase_71 RE -
testcase_72 RE -
testcase_73 RE -
testcase_74 RE -
testcase_75 RE -
testcase_76 AC 136 ms
41,252 KB
testcase_77 AC 134 ms
41,180 KB
testcase_78 AC 134 ms
41,420 KB
testcase_79 AC 131 ms
41,176 KB
testcase_80 AC 141 ms
39,916 KB
testcase_81 AC 134 ms
41,324 KB
testcase_82 AC 131 ms
40,904 KB
testcase_83 AC 129 ms
41,032 KB
testcase_84 AC 141 ms
41,456 KB
testcase_85 AC 132 ms
41,292 KB
testcase_86 AC 140 ms
41,136 KB
testcase_87 AC 139 ms
41,324 KB
testcase_88 AC 130 ms
40,996 KB
testcase_89 AC 130 ms
40,808 KB
testcase_90 AC 138 ms
41,164 KB
testcase_91 RE -
testcase_92 RE -
testcase_93 RE -
testcase_94 RE -
testcase_95 RE -
testcase_96 AC 130 ms
41,128 KB
testcase_97 RE -
testcase_98 RE -
testcase_99 RE -
testcase_100 RE -
testcase_101 RE -
testcase_102 RE -
testcase_103 RE -
testcase_104 RE -
testcase_105 RE -
testcase_106 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

package no308;

import java.math.BigInteger;
import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.Queue;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		if (n < 60) {
			System.out.println(solveNaive((int) n));
			return;
		}
		if (n % 8 != 1 || !BigInteger.valueOf(n-8).isProbablePrime(20)) {
			System.out.println(8);
		}else{
			System.out.println(14);
		}
	}

	public static int solveNaive(int n) {
		boolean[] isPrime = isPrimeArray(n);
		for(int w=1;w<=n;w++) {
			boolean[] used = new boolean[n+1];
			Queue<Integer> q = new ArrayDeque<>();
			used[1] = true;
			q.offer(1);
			while(!q.isEmpty()) {
				int x = q.poll();
				check(x+1,n,isPrime,used,q);
				check(x-1,n,isPrime,used,q);
				check(x+w,n,isPrime,used,q);
				check(x-w,n,isPrime,used,q);
			}
			if (used[n]) {
				return w;
			}
		}
		return -1;
	}

	public static void check(int x,int n,boolean[] isPrime,boolean[] used,Queue<Integer> q) {
		if (x < 1 || x > n || isPrime[x] || used[x]) {
			return;
		}
		used[x] = true;
		q.offer(x);
	}

	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;
	}

}
0