結果

問題 No.385 カップ麺生活
ユーザー tentententen
提出日時 2020-09-29 14:33:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 332 ms / 2,000 ms
コード長 1,270 bytes
コンパイル時間 2,444 ms
コンパイル使用メモリ 77,948 KB
実行使用メモリ 41,652 KB
最終ジャッジ日時 2024-10-04 23:06:07
合計ジャッジ時間 7,199 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,652 KB
testcase_01 AC 118 ms
41,376 KB
testcase_02 AC 98 ms
39,700 KB
testcase_03 AC 110 ms
41,304 KB
testcase_04 AC 136 ms
41,016 KB
testcase_05 AC 102 ms
39,924 KB
testcase_06 AC 140 ms
41,256 KB
testcase_07 AC 113 ms
41,224 KB
testcase_08 AC 111 ms
41,296 KB
testcase_09 AC 109 ms
41,236 KB
testcase_10 AC 332 ms
41,452 KB
testcase_11 AC 108 ms
41,096 KB
testcase_12 AC 119 ms
41,548 KB
testcase_13 AC 133 ms
41,208 KB
testcase_14 AC 131 ms
41,000 KB
testcase_15 AC 128 ms
41,208 KB
testcase_16 AC 101 ms
39,948 KB
testcase_17 AC 122 ms
41,048 KB
testcase_18 AC 101 ms
40,432 KB
testcase_19 AC 107 ms
40,920 KB
testcase_20 AC 136 ms
41,464 KB
testcase_21 AC 117 ms
41,080 KB
testcase_22 AC 135 ms
41,576 KB
testcase_23 AC 117 ms
41,256 KB
testcase_24 AC 153 ms
41,272 KB
testcase_25 AC 111 ms
41,216 KB
testcase_26 AC 107 ms
41,100 KB
testcase_27 AC 115 ms
41,344 KB
testcase_28 AC 126 ms
41,564 KB
testcase_29 AC 119 ms
41,220 KB
testcase_30 AC 132 ms
41,204 KB
testcase_31 AC 117 ms
41,408 KB
testcase_32 AC 115 ms
41,624 KB
testcase_33 AC 146 ms
41,252 KB
testcase_34 AC 112 ms
41,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int m = sc.nextInt();
        int n = sc.nextInt();
        int[] arr = new int[n];
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
        }
        Arrays.sort(arr);
        int[] dp = new int[m + 1];
        for (int i = 1; arr[0] * i <= m; i++) {
            dp[arr[0] * i] = i;
        }
        for (int i = 1; i < n; i++) {
            for (int j = 0; j + arr[i] <= m; j++) {
                if (j != 0 && dp[j] == 0) {
                    continue;
                }
                for (int k = 1; j + arr[i] * k <= m; k++) {
                    dp[j + arr[i] * k] = Math.max(dp[j + arr[i] * k], dp[j] + k);
                }
            }
        }
        long ans = 0;
        for (int i = 0; i <= m; i++) {
            ans = Math.max(ans, dp[i]);
        }
        boolean[] isNotPrime = new boolean[m + 1];
        for (int i = 2; i < m; i++) {
            if (!isNotPrime[i]) {
                ans += dp[m - i];
                for (int j = 2; i * j <= m; j++) {
                    isNotPrime[i * j] = true;
                }
            }
        }
        System.out.println(ans);
    }
}
0