結果

問題 No.2424 Josouzai
ユーザー laneguelanegue
提出日時 2023-08-18 21:07:14
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 2,741 ms
コンパイル使用メモリ 214,116 KB
実行使用メモリ 10,884 KB
最終ジャッジ日時 2024-11-28 04:50:43
合計ジャッジ時間 5,482 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;
void main(){
  auto input = readln.chomp.split.to!(int[]);
  int k = input[1];
  int[] a = readln.chomp.split.to!(int[]);
  int c = 0;
  foreach(x; a.sort){
    if(x > k) break;
    k -= x;
    c++;
  }
  writefln("%d %d", c, k);
}
0