結果

問題 No.2329 Nafmo、イカサマをする
ユーザー tentententen
提出日時 2023-12-12 09:39:35
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,253 bytes
コンパイル時間 2,887 ms
コンパイル使用メモリ 84,772 KB
実行使用メモリ 236,948 KB
最終ジャッジ日時 2024-09-27 04:52:34
合計ジャッジ時間 12,352 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
42,224 KB
testcase_01 AC 51 ms
36,860 KB
testcase_02 AC 52 ms
36,880 KB
testcase_03 AC 51 ms
36,444 KB
testcase_04 AC 51 ms
36,432 KB
testcase_05 AC 51 ms
36,840 KB
testcase_06 AC 53 ms
36,548 KB
testcase_07 AC 51 ms
36,536 KB
testcase_08 AC 126 ms
42,004 KB
testcase_09 AC 52 ms
36,720 KB
testcase_10 AC 51 ms
36,852 KB
testcase_11 AC 53 ms
37,076 KB
testcase_12 AC 52 ms
36,564 KB
testcase_13 AC 54 ms
36,768 KB
testcase_14 AC 51 ms
36,856 KB
testcase_15 AC 51 ms
36,672 KB
testcase_16 AC 66 ms
37,044 KB
testcase_17 AC 51 ms
36,544 KB
testcase_18 AC 51 ms
36,532 KB
testcase_19 AC 148 ms
46,832 KB
testcase_20 AC 53 ms
36,744 KB
testcase_21 AC 54 ms
36,572 KB
testcase_22 AC 56 ms
36,968 KB
testcase_23 AC 53 ms
36,660 KB
testcase_24 AC 51 ms
36,848 KB
testcase_25 AC 57 ms
36,712 KB
testcase_26 AC 53 ms
36,800 KB
testcase_27 AC 52 ms
36,684 KB
testcase_28 AC 53 ms
36,572 KB
testcase_29 AC 197 ms
51,792 KB
testcase_30 AC 55 ms
36,900 KB
testcase_31 AC 52 ms
36,436 KB
testcase_32 AC 52 ms
36,908 KB
testcase_33 AC 55 ms
36,900 KB
testcase_34 AC 53 ms
36,888 KB
testcase_35 AC 80 ms
38,644 KB
testcase_36 AC 972 ms
104,012 KB
testcase_37 AC 78 ms
38,444 KB
testcase_38 AC 88 ms
38,872 KB
testcase_39 AC 669 ms
77,584 KB
testcase_40 AC 504 ms
68,536 KB
testcase_41 TLE -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long m = sc.nextLong();
        int k = sc.nextInt();
        ArrayList<TreeSet<Long>> dp = new ArrayList<>();
        for (int i = 0; i <= k; i++) {
            dp.add(new TreeSet<>());
        }
        dp.get(0).add(0L);
        for (int i = 0; i < n; i++) {
            long x = sc.nextInt();
            for (int j = 0; j < k; j++) {
                for (long y : dp.get(j)) {
                    if (x + y > m) {
                        break;
                    }
                    dp.get(j + 1).add(x + y);
                }
            }
        }
        long ans = 0;
        for (int i = 0; i <= k; i++) {
            if (dp.get(i).size() > 0 && dp.get(i).first() <= m) {
                ans = Math.max(ans, dp.get(i).floor(m));
            }
        }
        System.out.println(ans);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0