結果

問題 No.247 線形計画問題もどき
ユーザー kou6839kou6839
提出日時 2015-07-20 13:57:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 2,180 ms
コンパイル使用メモリ 79,536 KB
実行使用メモリ 54,548 KB
最終ジャッジ日時 2024-07-07 11:07:46
合計ジャッジ時間 6,376 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
54,064 KB
testcase_01 AC 104 ms
53,920 KB
testcase_02 AC 144 ms
53,856 KB
testcase_03 AC 105 ms
54,048 KB
testcase_04 AC 97 ms
52,824 KB
testcase_05 AC 106 ms
54,072 KB
testcase_06 AC 107 ms
53,968 KB
testcase_07 AC 117 ms
54,340 KB
testcase_08 AC 115 ms
53,908 KB
testcase_09 AC 109 ms
54,000 KB
testcase_10 AC 112 ms
54,228 KB
testcase_11 AC 112 ms
54,044 KB
testcase_12 AC 105 ms
53,796 KB
testcase_13 AC 108 ms
53,828 KB
testcase_14 AC 108 ms
53,316 KB
testcase_15 AC 100 ms
53,012 KB
testcase_16 AC 106 ms
54,016 KB
testcase_17 AC 121 ms
53,784 KB
testcase_18 AC 125 ms
53,708 KB
testcase_19 AC 132 ms
54,524 KB
testcase_20 AC 134 ms
53,708 KB
testcase_21 AC 130 ms
54,348 KB
testcase_22 AC 120 ms
53,632 KB
testcase_23 AC 122 ms
53,908 KB
testcase_24 AC 138 ms
54,548 KB
testcase_25 AC 130 ms
54,052 KB
testcase_26 AC 115 ms
54,120 KB
testcase_27 AC 123 ms
54,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int C = sc.nextInt();
		int N = sc.nextInt();
		int[] a = new int[N];
		for(int i=0;i<N;i++)a[i]=sc.nextInt();
		int[] dp = new int[C+1];
		Arrays.fill(dp, Integer.MAX_VALUE);
		dp[0]=0;
		for(int i=1;i<=C;i++){
			for(int j=0;j<N;j++){
				if(i-a[j]<0 || dp[i-a[j]]==Integer.MAX_VALUE) continue;
				dp[i]=Math.min(dp[i],dp[i-a[j]]+1);
			}
		}
		if(dp[C]==Integer.MAX_VALUE){
			System.out.println(-1);
		}else{
			System.out.println(dp[C]);
		}
	}
}
0