結果

問題 No.617 Nafmo、買い出しに行く
ユーザー htensaihtensai
提出日時 2019-11-14 14:48:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 630 bytes
コンパイル時間 2,349 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 41,468 KB
最終ジャッジ日時 2024-09-21 21:24:54
合計ジャッジ時間 6,352 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,356 KB
testcase_01 AC 136 ms
41,292 KB
testcase_02 AC 137 ms
41,264 KB
testcase_03 AC 139 ms
41,440 KB
testcase_04 AC 135 ms
41,076 KB
testcase_05 AC 141 ms
41,156 KB
testcase_06 AC 146 ms
41,468 KB
testcase_07 AC 147 ms
41,284 KB
testcase_08 AC 135 ms
41,108 KB
testcase_09 AC 136 ms
41,412 KB
testcase_10 AC 144 ms
41,048 KB
testcase_11 AC 145 ms
41,312 KB
testcase_12 AC 140 ms
41,348 KB
testcase_13 AC 140 ms
41,240 KB
testcase_14 AC 141 ms
41,360 KB
testcase_15 AC 136 ms
41,220 KB
testcase_16 AC 135 ms
41,268 KB
testcase_17 AC 137 ms
41,204 KB
testcase_18 AC 129 ms
41,368 KB
testcase_19 AC 128 ms
41,208 KB
testcase_20 AC 135 ms
41,084 KB
testcase_21 AC 131 ms
41,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int n;
    static int k;
    static int[] arr;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		n = sc.nextInt();
		k = sc.nextInt();
		arr = new int[n];
		for (int i = 0; i < n; i++) {
		    arr[i] = sc.nextInt();
		}
		System.out.println(search(0, 0));
	}
	
	static int search(int idx, int weight) {
	    if (idx >= n) {
	        return weight;
	    }
	    int ans = weight;
	    if (weight + arr[idx] <= k) {
	        ans = search(idx + 1, weight + arr[idx]);
	    }
	    ans = Math.max(ans, search(idx + 1, weight));
	    return ans;
	}
}
0