結果

問題 No.385 カップ麺生活
ユーザー htensaihtensai
提出日時 2020-05-14 11:37:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 359 ms / 2,000 ms
コード長 889 bytes
コンパイル時間 1,952 ms
コンパイル使用メモリ 77,600 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-10-04 23:04:00
合計ジャッジ時間 7,696 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,980 KB
testcase_01 AC 119 ms
53,980 KB
testcase_02 AC 118 ms
54,180 KB
testcase_03 AC 101 ms
52,656 KB
testcase_04 AC 126 ms
53,400 KB
testcase_05 AC 107 ms
52,760 KB
testcase_06 AC 123 ms
53,648 KB
testcase_07 AC 123 ms
54,044 KB
testcase_08 AC 120 ms
54,192 KB
testcase_09 AC 117 ms
54,216 KB
testcase_10 AC 359 ms
54,184 KB
testcase_11 AC 108 ms
52,744 KB
testcase_12 AC 131 ms
54,044 KB
testcase_13 AC 131 ms
53,892 KB
testcase_14 AC 138 ms
54,220 KB
testcase_15 AC 130 ms
53,916 KB
testcase_16 AC 120 ms
53,948 KB
testcase_17 AC 138 ms
53,956 KB
testcase_18 AC 116 ms
53,796 KB
testcase_19 AC 131 ms
54,144 KB
testcase_20 AC 136 ms
54,132 KB
testcase_21 AC 137 ms
54,164 KB
testcase_22 AC 137 ms
54,300 KB
testcase_23 AC 131 ms
54,224 KB
testcase_24 AC 151 ms
53,892 KB
testcase_25 AC 117 ms
53,772 KB
testcase_26 AC 122 ms
54,276 KB
testcase_27 AC 129 ms
54,164 KB
testcase_28 AC 132 ms
54,060 KB
testcase_29 AC 126 ms
54,100 KB
testcase_30 AC 118 ms
53,284 KB
testcase_31 AC 117 ms
53,832 KB
testcase_32 AC 119 ms
54,132 KB
testcase_33 AC 134 ms
54,216 KB
testcase_34 AC 103 ms
53,032 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 min = Integer.MAX_VALUE;
		int[] dp = new int[m + 1];
		for (int i = 0; i < n; i++) {
		   int p = sc.nextInt();
		   min = Math.min(min, p);
		   for (int j = 0; j <= m - p; j++) {
		       if (j > 0 && dp[j] == 0) {
		           continue;
		       }
		       for (int k = 1; j + k * p <= m; k++) {
		           dp[j + k * p] = Math.max(dp[j + k * p], dp[j] + k);
		       }
		   }
		}
		long ans = m / min;
		for (int i = 2; i < m; i++) {
		    if (isPrime(i)) {
		        ans += dp[m - i];
		    }
		}
		System.out.println(ans);
	}
	
	static boolean isPrime(int x) {
	    for (int i = 2; i <= Math.sqrt(x); i++) {
	        if (x % i == 0) {
	            return false;
	        }
	    }
	    return true;
	}
}
0