結果

問題 No.458 異なる素数の和
ユーザー tentententen
提出日時 2021-12-02 09:58:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 1,527 bytes
コンパイル時間 2,090 ms
コンパイル使用メモリ 77,648 KB
実行使用メモリ 38,372 KB
最終ジャッジ日時 2024-07-05 01:48:34
合計ジャッジ時間 5,110 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
37,204 KB
testcase_01 AC 81 ms
38,080 KB
testcase_02 AC 84 ms
38,040 KB
testcase_03 AC 72 ms
38,108 KB
testcase_04 AC 74 ms
38,272 KB
testcase_05 AC 106 ms
38,168 KB
testcase_06 AC 86 ms
38,104 KB
testcase_07 AC 53 ms
37,248 KB
testcase_08 AC 111 ms
38,372 KB
testcase_09 AC 73 ms
37,944 KB
testcase_10 AC 49 ms
36,928 KB
testcase_11 AC 113 ms
38,020 KB
testcase_12 AC 51 ms
36,976 KB
testcase_13 AC 50 ms
37,200 KB
testcase_14 AC 49 ms
37,000 KB
testcase_15 AC 50 ms
37,212 KB
testcase_16 AC 69 ms
37,972 KB
testcase_17 AC 50 ms
36,700 KB
testcase_18 AC 50 ms
37,008 KB
testcase_19 AC 50 ms
36,964 KB
testcase_20 AC 49 ms
37,296 KB
testcase_21 AC 52 ms
37,096 KB
testcase_22 AC 51 ms
36,936 KB
testcase_23 AC 49 ms
37,016 KB
testcase_24 AC 50 ms
36,648 KB
testcase_25 AC 50 ms
36,956 KB
testcase_26 AC 52 ms
37,204 KB
testcase_27 AC 83 ms
38,120 KB
testcase_28 AC 112 ms
38,256 KB
testcase_29 AC 61 ms
37,284 KB
testcase_30 AC 80 ms
38,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        boolean[] isNotPrime = new boolean[n + 1];
        int[] dp = new int[n + 1];
        Arrays.fill(dp, -1);
        dp[0] = 0;
        int max = 0;
        for (int i = 2; i <= n; i++) {
            if (isNotPrime[i]) {
                continue;
            }
            for (int j = 2; j * i <= n; j++) {
                isNotPrime[i * j] = true;
            }
            for (int j = Math.min(max, n - i); j >= 0; j--) {
                if (dp[j] >= 0) {
                    dp[j + i] = Math.max(dp[j + i], dp[j] + 1);
                }
            }
            max = Math.min(max + i, n);
        }
        System.out.println(dp[n]);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0