結果
問題 | No.617 Nafmo、買い出しに行く |
ユーザー |
|
提出日時 | 2018-02-21 16:43:39 |
言語 | Java (openjdk 23) |
結果 |
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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 20 |
ソースコード
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));}}}