結果

問題 No.458 異なる素数の和
ユーザー tentententen
提出日時 2020-09-10 15:52:18
言語 Java
(openjdk 23)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 1,035 bytes
コンパイル時間 2,472 ms
コンパイル使用メモリ 78,952 KB
実行使用メモリ 42,388 KB
最終ジャッジ日時 2024-12-23 10:07:20
合計ジャッジ時間 7,377 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,532 KB
testcase_01 AC 153 ms
41,804 KB
testcase_02 AC 158 ms
41,752 KB
testcase_03 AC 138 ms
41,616 KB
testcase_04 AC 141 ms
41,620 KB
testcase_05 AC 189 ms
41,812 KB
testcase_06 AC 144 ms
41,480 KB
testcase_07 AC 118 ms
41,104 KB
testcase_08 AC 184 ms
42,008 KB
testcase_09 AC 139 ms
41,556 KB
testcase_10 AC 131 ms
41,504 KB
testcase_11 AC 187 ms
42,388 KB
testcase_12 AC 120 ms
41,204 KB
testcase_13 AC 124 ms
41,568 KB
testcase_14 AC 119 ms
41,236 KB
testcase_15 AC 110 ms
41,216 KB
testcase_16 AC 137 ms
41,464 KB
testcase_17 AC 118 ms
41,524 KB
testcase_18 AC 143 ms
41,496 KB
testcase_19 AC 130 ms
41,344 KB
testcase_20 AC 121 ms
41,296 KB
testcase_21 AC 114 ms
41,228 KB
testcase_22 AC 110 ms
41,224 KB
testcase_23 AC 124 ms
41,296 KB
testcase_24 AC 122 ms
41,160 KB
testcase_25 AC 120 ms
41,056 KB
testcase_26 AC 108 ms
41,368 KB
testcase_27 AC 143 ms
42,112 KB
testcase_28 AC 193 ms
42,052 KB
testcase_29 AC 129 ms
41,624 KB
testcase_30 AC 138 ms
41,664 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