結果
問題 | No.2329 Nafmo、イカサマをする |
ユーザー | tenten |
提出日時 | 2023-05-30 15:19:13 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,215 bytes |
コンパイル時間 | 2,756 ms |
コンパイル使用メモリ | 86,048 KB |
実行使用メモリ | 236,804 KB |
最終ジャッジ日時 | 2024-06-08 20:13:12 |
合計ジャッジ時間 | 11,156 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
42,160 KB |
testcase_01 | AC | 49 ms
36,932 KB |
testcase_02 | AC | 48 ms
37,036 KB |
testcase_03 | AC | 48 ms
36,904 KB |
testcase_04 | AC | 48 ms
37,096 KB |
testcase_05 | AC | 49 ms
36,728 KB |
testcase_06 | AC | 50 ms
36,852 KB |
testcase_07 | AC | 52 ms
36,968 KB |
testcase_08 | AC | 133 ms
42,312 KB |
testcase_09 | AC | 49 ms
37,076 KB |
testcase_10 | AC | 49 ms
37,136 KB |
testcase_11 | AC | 49 ms
37,016 KB |
testcase_12 | AC | 48 ms
37,088 KB |
testcase_13 | AC | 51 ms
36,808 KB |
testcase_14 | AC | 48 ms
36,960 KB |
testcase_15 | AC | 48 ms
37,076 KB |
testcase_16 | AC | 61 ms
37,036 KB |
testcase_17 | AC | 49 ms
36,752 KB |
testcase_18 | AC | 49 ms
36,648 KB |
testcase_19 | AC | 153 ms
46,724 KB |
testcase_20 | AC | 48 ms
36,776 KB |
testcase_21 | AC | 50 ms
36,928 KB |
testcase_22 | AC | 51 ms
37,064 KB |
testcase_23 | AC | 49 ms
36,964 KB |
testcase_24 | AC | 48 ms
36,984 KB |
testcase_25 | AC | 52 ms
37,280 KB |
testcase_26 | AC | 48 ms
36,876 KB |
testcase_27 | AC | 49 ms
36,776 KB |
testcase_28 | AC | 48 ms
37,060 KB |
testcase_29 | AC | 192 ms
51,252 KB |
testcase_30 | AC | 49 ms
37,136 KB |
testcase_31 | AC | 49 ms
36,944 KB |
testcase_32 | AC | 50 ms
36,584 KB |
testcase_33 | AC | 51 ms
37,044 KB |
testcase_34 | AC | 50 ms
36,964 KB |
testcase_35 | AC | 73 ms
38,464 KB |
testcase_36 | AC | 841 ms
103,896 KB |
testcase_37 | AC | 74 ms
38,212 KB |
testcase_38 | AC | 83 ms
38,752 KB |
testcase_39 | AC | 619 ms
77,480 KB |
testcase_40 | AC | 423 ms
68,136 KB |
testcase_41 | TLE | - |
testcase_42 | -- | - |
ソースコード
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++) { int x = sc.nextInt(); for (int j = 1; j <= k; j++) { for (long y : dp.get(j - 1)) { if (x + y > m) { break; } dp.get(j).add(x + y); } } } long ans = 0; for (TreeSet<Long> set : dp) { if (set.size() > 0) { ans = Math.max(ans, set.last()); } } 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(); } }