結果

問題 No.458 異なる素数の和
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-09 02:19:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 1,092 bytes
コンパイル時間 2,347 ms
コンパイル使用メモリ 78,056 KB
実行使用メモリ 41,696 KB
最終ジャッジ日時 2024-07-05 05:41:30
合計ジャッジ時間 6,642 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
41,040 KB
testcase_01 AC 168 ms
41,696 KB
testcase_02 AC 153 ms
41,312 KB
testcase_03 AC 111 ms
40,768 KB
testcase_04 AC 125 ms
40,860 KB
testcase_05 AC 194 ms
41,440 KB
testcase_06 AC 150 ms
41,232 KB
testcase_07 AC 108 ms
40,960 KB
testcase_08 AC 197 ms
41,436 KB
testcase_09 AC 112 ms
41,396 KB
testcase_10 AC 103 ms
41,316 KB
testcase_11 AC 208 ms
41,388 KB
testcase_12 AC 101 ms
41,124 KB
testcase_13 AC 103 ms
41,052 KB
testcase_14 AC 103 ms
41,288 KB
testcase_15 AC 103 ms
41,228 KB
testcase_16 AC 106 ms
40,524 KB
testcase_17 AC 95 ms
40,316 KB
testcase_18 AC 103 ms
41,008 KB
testcase_19 AC 101 ms
40,776 KB
testcase_20 AC 92 ms
40,136 KB
testcase_21 AC 99 ms
40,880 KB
testcase_22 AC 102 ms
41,052 KB
testcase_23 AC 101 ms
40,924 KB
testcase_24 AC 102 ms
40,964 KB
testcase_25 AC 102 ms
41,132 KB
testcase_26 AC 102 ms
40,880 KB
testcase_27 AC 141 ms
40,828 KB
testcase_28 AC 203 ms
41,256 KB
testcase_29 AC 113 ms
40,880 KB
testcase_30 AC 134 ms
41,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        boolean [] b = new boolean [N+1];
        ArrayList<Integer> prime = new ArrayList<Integer>();
        prime.add(2);
        for(int i=3; i<=N; i+=2){
            if(b[i]==false){
                prime.add(i);
                int k=2;
                while(i*k<=N){
                    b[i*k]=true;
                    k++;
                }
            }
        }
        boolean [] dp = new boolean [N+1];
        dp[0]=true;
        int [] num = new int [N+1];
        for(int i=0; i<prime.size(); i++){
            int t=prime.get(i);
            for(int j=N; j>=0; j--){
                if(dp[j]){
                    int tmp=j+t;
                    if(tmp<=N){
                        dp[tmp]=true;
                        num[tmp]=Math.max(num[tmp],num[j]+1);
                    }
                }
            }
        }
        int ans=num[N];
        if(ans==0)ans=-1;
        System.out.println(ans);
    }
}
0