結果

問題 No.2424 Josouzai
ユーザー InTheBloomInTheBloom
提出日時 2023-08-18 21:03:13
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 469 bytes
コンパイル時間 6,036 ms
コンパイル使用メモリ 178,612 KB
実行使用メモリ 10,748 KB
最終ジャッジ日時 2024-11-28 04:40:35
合計ジャッジ時間 7,438 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main () {
    int N, K; readln.read(N, K);
    int[] A = readln.split.to!(int[]);

    A.sort;
    int ans = 0;
    long sum = 0;
    while (true) {
        if (ans == A.length || K < sum + A[ans]) {
            break;
        }
        sum += A[ans];
        ans++;
    }

    writeln(ans, " ", K-sum);
}

void read(T...)(string S, ref T args) {
    auto buf = S.split;
    foreach (i, ref arg; args) {
        arg = buf[i].to!(typeof(arg));
    }
}
0