結果

問題 No.385 カップ麺生活
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-18 15:44:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 1,124 bytes
コンパイル時間 1,827 ms
コンパイル使用メモリ 78,952 KB
実行使用メモリ 54,240 KB
最終ジャッジ日時 2024-10-04 22:56:34
合計ジャッジ時間 6,831 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
52,796 KB
testcase_01 AC 104 ms
52,808 KB
testcase_02 AC 115 ms
53,476 KB
testcase_03 AC 104 ms
52,868 KB
testcase_04 AC 118 ms
53,700 KB
testcase_05 AC 109 ms
52,820 KB
testcase_06 AC 119 ms
53,960 KB
testcase_07 AC 111 ms
53,008 KB
testcase_08 AC 106 ms
53,024 KB
testcase_09 AC 111 ms
52,928 KB
testcase_10 AC 130 ms
54,180 KB
testcase_11 AC 116 ms
54,024 KB
testcase_12 AC 122 ms
54,116 KB
testcase_13 AC 112 ms
52,952 KB
testcase_14 AC 118 ms
53,096 KB
testcase_15 AC 131 ms
53,908 KB
testcase_16 AC 113 ms
53,948 KB
testcase_17 AC 111 ms
53,108 KB
testcase_18 AC 108 ms
52,680 KB
testcase_19 AC 117 ms
54,240 KB
testcase_20 AC 119 ms
54,068 KB
testcase_21 AC 127 ms
54,080 KB
testcase_22 AC 123 ms
53,648 KB
testcase_23 AC 125 ms
53,676 KB
testcase_24 AC 112 ms
53,380 KB
testcase_25 AC 99 ms
52,748 KB
testcase_26 AC 115 ms
54,132 KB
testcase_27 AC 118 ms
53,304 KB
testcase_28 AC 128 ms
53,988 KB
testcase_29 AC 104 ms
52,796 KB
testcase_30 AC 113 ms
53,088 KB
testcase_31 AC 114 ms
54,144 KB
testcase_32 AC 100 ms
54,136 KB
testcase_33 AC 119 ms
53,724 KB
testcase_34 AC 117 ms
54,192 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[] c = new int[N];
    for(int i = 0; i < N; i++) {
      c[i] = sc.nextInt();
    }
    ArrayList<Integer> P = new ArrayList<Integer>();
    for(int i = 2; i < M; i++) {
      boolean flg = true;
      for(int j = 2; j * j <= i; j++) {
        if(i % j == 0) {
          flg = false;
          break;
        }
      }
      if(flg) P.add(i);
    }
    Arrays.sort(c);
    // dp[i]はちょうどi円購入したときの最大購入数を表す(不可能な場合は0)
    int[] dp = new int[M];
    for(int i = 1; i < M; i++) {
      for(int k = 0; k < N; k++) {
        if(i >= c[k]) {
          if(i == c[k]) {
            dp[i] = Math.max(dp[i], 1);
          } else {
            if(dp[i - c[k]] > 0) dp[i] = Math.max(dp[i], 1 + dp[i - c[k]]); 
          }
        }
      }
    }
    int ans = 0;
    for(int i = 0; i < P.size(); i++) {
      ans += dp[M - P.get(i)];
    }
    ans += (M / c[0]);
    System.out.println(ans);
  }
}
0