結果

問題 No.914 Omiyage
ユーザー 37zigen37zigen
提出日時 2020-03-10 04:32:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 767 bytes
コンパイル時間 2,131 ms
コンパイル使用メモリ 77,776 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-04-27 18:28:57
合計ジャッジ時間 6,085 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,180 KB
testcase_01 AC 139 ms
53,980 KB
testcase_02 AC 142 ms
54,172 KB
testcase_03 AC 140 ms
53,844 KB
testcase_04 AC 138 ms
54,044 KB
testcase_05 AC 133 ms
54,292 KB
testcase_06 AC 135 ms
53,956 KB
testcase_07 AC 134 ms
53,964 KB
testcase_08 AC 138 ms
54,136 KB
testcase_09 AC 136 ms
53,908 KB
testcase_10 AC 139 ms
53,880 KB
testcase_11 AC 134 ms
54,092 KB
testcase_12 AC 140 ms
53,968 KB
testcase_13 AC 144 ms
54,052 KB
testcase_14 AC 140 ms
53,976 KB
testcase_15 AC 131 ms
54,144 KB
testcase_16 AC 129 ms
54,128 KB
testcase_17 AC 134 ms
53,976 KB
testcase_18 AC 119 ms
52,804 KB
testcase_19 AC 132 ms
54,204 KB
testcase_20 AC 133 ms
54,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		int M=sc.nextInt();
		int K=sc.nextInt();
		int[][] A=new int[N][M];
		boolean[][] dp=new boolean[N+1][K+1];
		for(int i=0;i<A.length;++i) {
			for(int j=0;j<A[i].length;++j) {
				A[i][j]=sc.nextInt();
			}
		}
		dp[0][0]=true;
		for(int i=0;i<N;++i) {
			for(int cur=0;cur<=K;++cur) {
				if(!dp[i][cur])continue;
				for(int next=0;next<M;++next) {
					if(cur+A[i][next]<=K)
						dp[i+1][cur+A[i][next]]|=dp[i][cur];
				}
			}
		}
		int ans=-1;
		for(int i=1;i<=K;++i)if(dp[N][i])ans=Math.max(ans, i);
		System.out.println(ans==-1?-1:(K-ans));
	}
}


0