結果

問題 No.458 異なる素数の和
ユーザー GrenacheGrenache
提出日時 2016-12-09 00:27:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 2,204 bytes
コンパイル時間 4,241 ms
コンパイル使用メモリ 80,600 KB
実行使用メモリ 41,964 KB
最終ジャッジ日時 2024-07-05 05:37:22
合計ジャッジ時間 9,045 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,256 KB
testcase_01 AC 157 ms
41,292 KB
testcase_02 AC 161 ms
41,276 KB
testcase_03 AC 142 ms
41,604 KB
testcase_04 AC 174 ms
41,324 KB
testcase_05 AC 194 ms
41,428 KB
testcase_06 AC 165 ms
41,432 KB
testcase_07 AC 128 ms
41,152 KB
testcase_08 AC 203 ms
41,600 KB
testcase_09 AC 140 ms
41,472 KB
testcase_10 AC 125 ms
41,424 KB
testcase_11 AC 206 ms
41,964 KB
testcase_12 AC 129 ms
41,376 KB
testcase_13 AC 126 ms
41,736 KB
testcase_14 AC 112 ms
41,424 KB
testcase_15 AC 126 ms
41,488 KB
testcase_16 AC 136 ms
41,668 KB
testcase_17 AC 124 ms
41,296 KB
testcase_18 AC 121 ms
41,044 KB
testcase_19 AC 119 ms
41,432 KB
testcase_20 AC 128 ms
41,260 KB
testcase_21 AC 126 ms
41,296 KB
testcase_22 AC 124 ms
41,496 KB
testcase_23 AC 122 ms
41,808 KB
testcase_24 AC 117 ms
41,388 KB
testcase_25 AC 124 ms
41,304 KB
testcase_26 AC 126 ms
41,172 KB
testcase_27 AC 161 ms
41,564 KB
testcase_28 AC 215 ms
41,504 KB
testcase_29 AC 143 ms
41,400 KB
testcase_30 AC 147 ms
41,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder458 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n = sc.nextInt();

		Prime prime = new Prime(n);
		List<Integer> primes = prime.getPrimeList();

		int[] dp = new int[n + 1];
		Arrays.fill(dp, -1);
		dp[0] = 0;
		for (int p : primes) {
			for (int i = n - p; i >= 0; i--) {
				if (dp[i] >= 0) {
					dp[i + p] = Math.max(dp[i + p], dp[i] + 1);
				}
			}
		}

		pr.println(dp[n]);
	}

	@SuppressWarnings("unused")
	private static class Prime {
		private int n;
		private List<Integer> primes;
		private BitSet p;

		Prime(int n) {
			this.n = n;

			p = new BitSet(n / 2);
			int m = (int)Math.sqrt(n);

//			for (int i = 1; i <= m; i++) {
			for (int bi = p.nextClearBit(0); 2 * (bi + 1) + 1 <= m; bi = p.nextClearBit(bi + 1)) {
				long i = bi + 1;
//				if (p.get(i - 1)) {
//					continue;
//				}

				for (long j = 2 * i * (i + 1); 2 * j + 1 <= n; j += 2 * i + 1) {
					p.set((int)(j - 1));
				}
			}
		}

		boolean isPrime(int n) {
			if (n == 2) {
				return true;
			}

			if (n == 1 || (n & 0x1) == 0) {
				return false;
			}

			return !p.get(n / 2 - 1);
		}

		List<Integer> getPrimeList() {
			if (primes != null) {
				return primes;
			}

			primes = new ArrayList<>();
			if (n >= 2) {
				primes.add(2);
//				for (int i = 1; 2 * i + 1 <= n; i++) {
				for (int bi = p.nextClearBit(0); 2 * (bi + 1) + 1 <= n; bi = p.nextClearBit(bi + 1)) {
					int i = bi + 1;
//					if (!p.get(i - 1)) {
//						primes.add(2 * i + 1);
//					}
					primes.add(2 * i + 1);
				}
			}

			return primes;
		}

		private static boolean isPrime(long n) {
			if (n == 2) {
				return true;
			}

			if (n == 1 || (n & 0x1) == 0) {
				return false;
			}

			for (long i = 3; i * i <= n; i += 2) {
				if (n % i == 0) {
					return false;
				}
			}

			return true;
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0