結果

問題 No.617 Nafmo、買い出しに行く
ユーザー tentententen
提出日時 2022-09-13 11:05:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 1,295 bytes
コンパイル時間 2,537 ms
コンパイル使用メモリ 78,632 KB
実行使用メモリ 55,804 KB
最終ジャッジ日時 2024-05-07 19:10:33
合計ジャッジ時間 6,357 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,204 KB
testcase_01 AC 52 ms
36,960 KB
testcase_02 AC 58 ms
37,204 KB
testcase_03 AC 132 ms
41,836 KB
testcase_04 AC 50 ms
37,132 KB
testcase_05 AC 185 ms
46,704 KB
testcase_06 AC 52 ms
37,116 KB
testcase_07 AC 52 ms
37,156 KB
testcase_08 AC 50 ms
37,064 KB
testcase_09 AC 50 ms
36,812 KB
testcase_10 AC 303 ms
54,904 KB
testcase_11 AC 326 ms
54,352 KB
testcase_12 AC 252 ms
53,104 KB
testcase_13 AC 277 ms
52,444 KB
testcase_14 AC 326 ms
55,804 KB
testcase_15 AC 50 ms
37,096 KB
testcase_16 AC 51 ms
36,972 KB
testcase_17 AC 50 ms
37,132 KB
testcase_18 AC 50 ms
37,148 KB
testcase_19 AC 53 ms
37,024 KB
testcase_20 AC 50 ms
36,960 KB
testcase_21 AC 49 ms
36,684 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