結果

問題 No.458 異なる素数の和
ユーザー htensaihtensai
提出日時 2019-12-12 20:01:13
言語 Java
(openjdk 23)
結果
AC  
実行時間 557 ms / 2,000 ms
コード長 1,388 bytes
コンパイル時間 2,388 ms
コンパイル使用メモリ 78,776 KB
実行使用メモリ 221,256 KB
最終ジャッジ日時 2024-06-25 14:00:13
合計ジャッジ時間 10,481 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
41,920 KB
testcase_01 AC 276 ms
101,020 KB
testcase_02 AC 315 ms
120,252 KB
testcase_03 AC 202 ms
56,480 KB
testcase_04 AC 201 ms
56,460 KB
testcase_05 AC 517 ms
220,860 KB
testcase_06 AC 307 ms
120,436 KB
testcase_07 AC 145 ms
41,888 KB
testcase_08 AC 514 ms
221,256 KB
testcase_09 AC 169 ms
48,264 KB
testcase_10 AC 121 ms
40,136 KB
testcase_11 AC 557 ms
219,496 KB
testcase_12 AC 124 ms
41,412 KB
testcase_13 AC 138 ms
41,256 KB
testcase_14 AC 134 ms
41,412 KB
testcase_15 AC 135 ms
41,352 KB
testcase_16 AC 158 ms
48,220 KB
testcase_17 AC 138 ms
41,632 KB
testcase_18 AC 133 ms
41,404 KB
testcase_19 AC 135 ms
41,784 KB
testcase_20 AC 135 ms
41,276 KB
testcase_21 AC 137 ms
41,212 KB
testcase_22 AC 136 ms
41,244 KB
testcase_23 AC 138 ms
41,508 KB
testcase_24 AC 137 ms
41,636 KB
testcase_25 AC 134 ms
41,148 KB
testcase_26 AC 135 ms
41,352 KB
testcase_27 AC 277 ms
113,440 KB
testcase_28 AC 541 ms
218,464 KB
testcase_29 AC 156 ms
43,144 KB
testcase_30 AC 228 ms
77,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int size;
    static int[][] dp;
    static ArrayList<Integer> primes = new ArrayList<>();
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        for (int i = 2; i <= n; i++) {
            if (isPrime(i)) {
                primes.add(i);
            }
        }
        size = primes.size();
        dp = new int[size][n + 1];
        int ret = dfw(size - 1, n);
        if (ret <= 0) {
            System.out.println(-1);
        } else {
            System.out.println(ret);
        }
    }
    
    static int dfw(int idx, int num) {
        if (num == 0) {
            return 0;
        }
        if (idx < 0) {
            return Integer.MIN_VALUE;
        }
        if (dp[idx][num] != 0) {
            return dp[idx][num];
        }
        int ret = dfw(idx - 1, num);
        int now = primes.get(idx);
        if (num >= now) {
            ret = Math.max(ret, dfw(idx - 1, num - now) + 1);
        }
        dp[idx][num] = ret;
        return ret;
    }
    
    static boolean isPrime(int num) {
        for (int x : primes) {
            if (Math.sqrt(num) < x) {
                break;
            }
            if (num % x == 0) {
                return false;
            }
        }
        return true;
    }
}
0