結果

問題 No.617 Nafmo、買い出しに行く
ユーザー shinwisteriashinwisteria
提出日時 2018-03-06 23:07:55
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 819 bytes
コンパイル時間 3,355 ms
コンパイル使用メモリ 79,224 KB
実行使用メモリ 103,052 KB
最終ジャッジ日時 2024-09-22 01:27:19
合計ジャッジ時間 8,632 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
61,728 KB
testcase_01 AC 109 ms
52,572 KB
testcase_02 AC 167 ms
52,068 KB
testcase_03 AC 219 ms
66,620 KB
testcase_04 AC 137 ms
47,196 KB
testcase_05 AC 310 ms
78,260 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 125 ms
41,228 KB
testcase_09 AC 122 ms
41,120 KB
testcase_10 AC 337 ms
81,720 KB
testcase_11 AC 356 ms
96,184 KB
testcase_12 AC 250 ms
69,264 KB
testcase_13 AC 205 ms
55,956 KB
testcase_14 AC 232 ms
66,328 KB
testcase_15 AC 129 ms
41,432 KB
testcase_16 AC 123 ms
40,968 KB
testcase_17 RE -
testcase_18 AC 109 ms
39,804 KB
testcase_19 AC 123 ms
41,184 KB
testcase_20 AC 125 ms
41,268 KB
testcase_21 AC 126 ms
41,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
import java.util.TreeSet;
public class Con617 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt() , K = s.nextInt();
		TreeSet<Integer> A = new TreeSet<>();
		for(int i = 0;i < N;i++){
			A.add(s.nextInt());
		}
		s.close();

		Integer[] a = new Integer[A.size()];
		A.toArray(a);
		//System.out.println(a[0] + "  " + a[1]);
		int max = 0;
		int[][] d = new int[K+1][2];               //[合計値][次に足すaの番号]
		d[0][0] = 1;
		for(int i = 0;i <= K;i++){
			if(d[i][0] == 1){
				for(int j = d[i][1];j < N;j++){
					int add = a[j];
					if(i + add <= K){
						d[i + add][0] = 1;
						d[i + add][1] = Math.min(j+1, N);
						max = Math.max(max, i + add);
					}
				}
			}
		}
		System.out.println(max);
	}

}
0