結果

問題 No.617 Nafmo、買い出しに行く
ユーザー denderaKawazudenderaKawazu
提出日時 2018-02-21 16:43:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,039 ms / 2,000 ms
コード長 1,412 bytes
コンパイル時間 2,505 ms
コンパイル使用メモリ 79,976 KB
実行使用メモリ 76,648 KB
最終ジャッジ日時 2024-09-16 08:55:49
合計ジャッジ時間 10,798 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,500 KB
testcase_01 AC 130 ms
41,320 KB
testcase_02 AC 136 ms
41,580 KB
testcase_03 AC 278 ms
45,532 KB
testcase_04 AC 135 ms
41,464 KB
testcase_05 AC 306 ms
49,580 KB
testcase_06 AC 455 ms
75,896 KB
testcase_07 AC 421 ms
75,444 KB
testcase_08 AC 132 ms
41,576 KB
testcase_09 AC 116 ms
40,404 KB
testcase_10 AC 731 ms
76,124 KB
testcase_11 AC 797 ms
76,384 KB
testcase_12 AC 1,039 ms
76,456 KB
testcase_13 AC 813 ms
76,084 KB
testcase_14 AC 973 ms
76,648 KB
testcase_15 AC 133 ms
41,464 KB
testcase_16 AC 135 ms
41,532 KB
testcase_17 AC 131 ms
41,716 KB
testcase_18 AC 134 ms
41,356 KB
testcase_19 AC 132 ms
41,436 KB
testcase_20 AC 133 ms
41,616 KB
testcase_21 AC 131 ms
41,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Scanner;
import java.util.Collections;
import java.util.ArrayList;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        Scanner in = new Scanner(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        Task solver = new Task();
        solver.solve(1, in, out);
        out.close();
    }

    static class Task {
        public void solve(int testNumber, Scanner in, PrintWriter out) {
            final int n = in.nextInt();
            final int k = in.nextInt();

            ArrayList<Integer> a = new ArrayList<>();
            for (int i = 0; i < n; i++) a.add(in.nextInt());
            ArrayList<Integer> weightSum = new ArrayList<>();
            weightSum.add(0);

            for (int i = 0; i < n; i++) {
                int m = weightSum.size();
                for (int j = 0; j < m; j++) {
                    int newW = weightSum.get(j) + a.get(i);
                    if (newW <= k) weightSum.add(newW);
                }
            }
            weightSum.sort(Collections.reverseOrder());

            out.println(weightSum.get(0));
        }

    }
}

0