結果

問題 No.617 Nafmo、買い出しに行く
ユーザー shinwisteriashinwisteria
提出日時 2018-03-07 19:32:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 406 ms / 2,000 ms
コード長 831 bytes
コンパイル時間 5,957 ms
コンパイル使用メモリ 77,368 KB
実行使用メモリ 102,852 KB
最終ジャッジ日時 2024-10-04 03:22:33
合計ジャッジ時間 9,785 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 184 ms
52,292 KB
testcase_01 AC 134 ms
41,372 KB
testcase_02 AC 195 ms
51,884 KB
testcase_03 AC 253 ms
68,036 KB
testcase_04 AC 159 ms
47,696 KB
testcase_05 AC 323 ms
78,028 KB
testcase_06 AC 406 ms
102,852 KB
testcase_07 AC 391 ms
102,060 KB
testcase_08 AC 133 ms
41,308 KB
testcase_09 AC 134 ms
41,524 KB
testcase_10 AC 357 ms
81,820 KB
testcase_11 AC 394 ms
96,948 KB
testcase_12 AC 274 ms
69,324 KB
testcase_13 AC 235 ms
56,436 KB
testcase_14 AC 245 ms
66,380 KB
testcase_15 AC 138 ms
41,000 KB
testcase_16 AC 140 ms
41,408 KB
testcase_17 AC 136 ms
41,412 KB
testcase_18 AC 132 ms
41,332 KB
testcase_19 AC 135 ms
41,188 KB
testcase_20 AC 132 ms
41,640 KB
testcase_21 AC 129 ms
41,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

		Arrays.sort(A);
		//System.out.println(a[0] + "  " + a[1]);
		int max = 0;
		int[][] d = new int[K+1][2];
		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;
						if(d[i + add][1] != 0){
							d[i + add][1] = Math.min(Math.min(j+1, d[i+add][1]), N);
						}else{
							d[i + add][1] = Math.min(j + 1, N);
						}
						max = Math.max(max, i + add);
					}
				}
			}
		}
		System.out.println(max);
	}

}
0