結果
問題 |
No.617 Nafmo、買い出しに行く
|
ユーザー |
|
提出日時 | 2018-02-21 16:48:01 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 292 ms / 2,000 ms |
コード長 | 1,438 bytes |
コンパイル時間 | 2,390 ms |
コンパイル使用メモリ | 85,144 KB |
実行使用メモリ | 74,160 KB |
最終ジャッジ日時 | 2024-09-16 16:10:36 |
合計ジャッジ時間 | 7,718 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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.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); int ans = 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); if (newW > ans) ans = newW; } } } out.println(ans); } } }