結果

問題 No.617 Nafmo、買い出しに行く
ユーザー tentententen
提出日時 2022-09-13 11:05:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 367 ms / 2,000 ms
コード長 1,295 bytes
コンパイル時間 4,822 ms
コンパイル使用メモリ 77,940 KB
実行使用メモリ 56,136 KB
最終ジャッジ日時 2024-11-30 14:12:50
合計ジャッジ時間 6,386 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
36,716 KB
testcase_01 AC 56 ms
36,844 KB
testcase_02 AC 64 ms
37,304 KB
testcase_03 AC 141 ms
42,012 KB
testcase_04 AC 56 ms
37,356 KB
testcase_05 AC 183 ms
46,900 KB
testcase_06 AC 57 ms
37,324 KB
testcase_07 AC 56 ms
37,132 KB
testcase_08 AC 55 ms
37,124 KB
testcase_09 AC 56 ms
37,092 KB
testcase_10 AC 339 ms
54,608 KB
testcase_11 AC 348 ms
54,204 KB
testcase_12 AC 298 ms
53,016 KB
testcase_13 AC 278 ms
52,656 KB
testcase_14 AC 367 ms
56,136 KB
testcase_15 AC 56 ms
37,164 KB
testcase_16 AC 55 ms
36,900 KB
testcase_17 AC 56 ms
37,264 KB
testcase_18 AC 56 ms
37,148 KB
testcase_19 AC 56 ms
37,016 KB
testcase_20 AC 55 ms
37,132 KB
testcase_21 AC 56 ms
37,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        TreeSet<Integer> all = new TreeSet<>();
        all.add(0);
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            Integer key = k - x + 1;
            while ((key = all.lower(key)) != null) {
                all.add(key + x);
            }
        }
        System.out.println(all.last());
    }
}
    
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0