結果

問題 No.2424 Josouzai
ユーザー tentententen
提出日時 2023-08-23 13:56:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 405 ms / 2,000 ms
コード長 1,928 bytes
コンパイル時間 3,384 ms
コンパイル使用メモリ 85,448 KB
実行使用メモリ 62,344 KB
最終ジャッジ日時 2024-06-01 11:29:27
合計ジャッジ時間 14,582 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
51,036 KB
testcase_01 AC 82 ms
51,336 KB
testcase_02 AC 83 ms
51,268 KB
testcase_03 AC 81 ms
51,256 KB
testcase_04 AC 259 ms
57,068 KB
testcase_05 AC 398 ms
62,260 KB
testcase_06 AC 398 ms
61,480 KB
testcase_07 AC 384 ms
61,856 KB
testcase_08 AC 405 ms
62,344 KB
testcase_09 AC 85 ms
51,392 KB
testcase_10 AC 218 ms
57,396 KB
testcase_11 AC 297 ms
58,984 KB
testcase_12 AC 271 ms
58,820 KB
testcase_13 AC 291 ms
56,976 KB
testcase_14 AC 323 ms
59,640 KB
testcase_15 AC 199 ms
57,284 KB
testcase_16 AC 382 ms
59,680 KB
testcase_17 AC 263 ms
57,508 KB
testcase_18 AC 276 ms
56,808 KB
testcase_19 AC 284 ms
57,560 KB
testcase_20 AC 382 ms
59,480 KB
testcase_21 AC 348 ms
58,784 KB
testcase_22 AC 282 ms
56,752 KB
testcase_23 AC 263 ms
57,516 KB
testcase_24 AC 227 ms
56,936 KB
testcase_25 AC 388 ms
61,380 KB
testcase_26 AC 336 ms
59,024 KB
testcase_27 AC 393 ms
61,840 KB
testcase_28 AC 371 ms
59,900 KB
testcase_29 AC 341 ms
59,072 KB
testcase_30 AC 225 ms
56,660 KB
testcase_31 AC 280 ms
57,272 KB
testcase_32 AC 385 ms
61,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static ArrayList<HashMap<Long, Long>> dp = new ArrayList<>();
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        Arrays.sort(values);
        for (int i = 0; i < n; i++) {
            if (k < values[i]) {
                System.out.println(i + " " + k);
                return;
            }
            k -= values[i];
        }
        System.out.println(n + " " + k);
    }
} 
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