結果

問題 No.458 異なる素数の和
ユーザー crazybbb3crazybbb3
提出日時 2017-01-16 20:47:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 773 ms / 2,000 ms
コード長 2,829 bytes
コンパイル時間 2,170 ms
コンパイル使用メモリ 79,704 KB
実行使用メモリ 454,400 KB
最終ジャッジ日時 2024-07-05 05:56:39
合計ジャッジ時間 8,544 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,776 KB
testcase_01 AC 277 ms
178,388 KB
testcase_02 AC 306 ms
177,640 KB
testcase_03 AC 134 ms
66,200 KB
testcase_04 AC 149 ms
74,456 KB
testcase_05 AC 542 ms
348,540 KB
testcase_06 AC 294 ms
177,936 KB
testcase_07 AC 58 ms
37,672 KB
testcase_08 AC 522 ms
347,220 KB
testcase_09 AC 97 ms
45,904 KB
testcase_10 AC 50 ms
36,768 KB
testcase_11 AC 773 ms
450,776 KB
testcase_12 AC 51 ms
38,420 KB
testcase_13 AC 49 ms
37,080 KB
testcase_14 AC 49 ms
37,204 KB
testcase_15 AC 49 ms
37,112 KB
testcase_16 AC 101 ms
54,288 KB
testcase_17 AC 51 ms
37,024 KB
testcase_18 AC 50 ms
37,168 KB
testcase_19 AC 50 ms
37,008 KB
testcase_20 AC 51 ms
36,756 KB
testcase_21 AC 52 ms
36,776 KB
testcase_22 AC 57 ms
37,160 KB
testcase_23 AC 61 ms
37,164 KB
testcase_24 AC 51 ms
37,024 KB
testcase_25 AC 50 ms
37,008 KB
testcase_26 AC 51 ms
37,204 KB
testcase_27 AC 293 ms
177,916 KB
testcase_28 AC 695 ms
454,400 KB
testcase_29 AC 83 ms
41,112 KB
testcase_30 AC 209 ms
121,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.*;

public class Main {

    void solve() throws IOException {
        int n = ni();

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

        int m = primes.size();

        long[][] dp = new long[m + 1][n + 1];
        for (int i = 0; i <= m; i++) {
            Arrays.fill(dp[i], -1);
        }
        dp[0][0] = 0;

        for (int i = 0; i < m; i++) {
            int p = primes.get(i);
            for (int j = n; j >= 0; j--) {
                if (dp[i][j] == -1) continue;
                dp[i + 1][j] = dp[i][j];
                if (j + p <= n) {
                    dp[i + 1][j + p] = Math.max(dp[i + 1][j + p], dp[i][j] + 1);
                }
            }
        }

        out.println(dp[m][n]);
    }

    class Prime {
        int n;
        boolean[] isPrime;
        ArrayList<Integer> primes;

        Prime(int n) {
            this.n = n;
            isPrime = new boolean[n + 1];
            primes = new ArrayList<>();
            sieve();
        }

        void sieve() {
            for (int i = 2; i <= n; i++) {
                if (!isPrime[i]) {
                    primes.add(i);
                    for (long j = (long) i * i; j <= n; j += i) {
                        isPrime[(int) j] = true;
                    }
                }
            }
        }
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    String[] nsa(int n) throws IOException {
        String[] res = new String[n];
        for (int i = 0; i < n; i++) {
            res[i] = ns();
        }
        return res;
    }

    int[] nia(int n) throws IOException {
        int[] res = new int[n];
        for (int i = 0; i < n; i++) {
            res[i] = ni();
        }
        return res;
    }

    long[] nla(int n) throws IOException {
        long[] res = new long[n];
        for (int i = 0; i < n; i++) {
            res[i] = nl();
        }
        return res;
    }

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0