結果

問題 No.458 異なる素数の和
ユーザー tentententen
提出日時 2020-09-10 15:52:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 1,035 bytes
コンパイル時間 2,969 ms
コンパイル使用メモリ 84,812 KB
実行使用メモリ 42,360 KB
最終ジャッジ日時 2024-06-02 13:02:27
合計ジャッジ時間 8,080 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,608 KB
testcase_01 AC 154 ms
41,912 KB
testcase_02 AC 158 ms
42,104 KB
testcase_03 AC 126 ms
41,916 KB
testcase_04 AC 125 ms
41,056 KB
testcase_05 AC 180 ms
42,188 KB
testcase_06 AC 140 ms
41,808 KB
testcase_07 AC 107 ms
41,564 KB
testcase_08 AC 178 ms
42,360 KB
testcase_09 AC 134 ms
41,592 KB
testcase_10 AC 121 ms
41,352 KB
testcase_11 AC 201 ms
42,252 KB
testcase_12 AC 120 ms
40,956 KB
testcase_13 AC 121 ms
41,376 KB
testcase_14 AC 109 ms
41,388 KB
testcase_15 AC 118 ms
41,232 KB
testcase_16 AC 136 ms
41,864 KB
testcase_17 AC 115 ms
41,256 KB
testcase_18 AC 109 ms
41,700 KB
testcase_19 AC 121 ms
41,132 KB
testcase_20 AC 118 ms
41,716 KB
testcase_21 AC 117 ms
41,508 KB
testcase_22 AC 113 ms
41,712 KB
testcase_23 AC 107 ms
41,304 KB
testcase_24 AC 115 ms
41,304 KB
testcase_25 AC 116 ms
41,040 KB
testcase_26 AC 118 ms
41,420 KB
testcase_27 AC 140 ms
41,668 KB
testcase_28 AC 173 ms
42,232 KB
testcase_29 AC 131 ms
41,628 KB
testcase_30 AC 152 ms
42,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	ArrayList<Integer> primes = new ArrayList<>();
    	int[] counts = new int[n + 1];
    	Arrays.fill(counts, -1);
    	counts[0] = 0;
    	for (int i = 2; i <= n; i++) {
    	    if (isPrime(i, primes)) {
    	        primes.add(i);
    	        for (int j = n - i; j >= 0; j--) {
    	            if (counts[j] < 0) {
    	                continue;
    	            }
    	            counts[j + i] = Math.max(counts[j + i], counts[j] + 1);
    	        }
    	    }
    	}
    	if (counts[n] > 0) {
    	    System.out.println(counts[n]);
    	} else {
    	    System.out.println(-1);
    	}
    }
    
    static boolean isPrime(int x, ArrayList<Integer> primes) {
        for (int y : primes) {
            if (y * y > x) {
                break;
            }
            if (x % y == 0) {
                return false;
            }
        }
        return true;
    }
}
0