結果

問題 No.2424 Josouzai
ユーザー shojinshojin
提出日時 2024-05-02 22:52:27
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 4,233 ms
コンパイル使用メモリ 280,328 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-02 22:52:35
合計ジャッジ時間 7,723 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 26 ms
6,940 KB
testcase_05 AC 88 ms
6,940 KB
testcase_06 AC 85 ms
6,940 KB
testcase_07 AC 85 ms
6,944 KB
testcase_08 AC 93 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 21 ms
6,940 KB
testcase_11 AC 62 ms
6,940 KB
testcase_12 AC 47 ms
6,940 KB
testcase_13 AC 29 ms
6,944 KB
testcase_14 AC 49 ms
6,940 KB
testcase_15 AC 9 ms
6,940 KB
testcase_16 AC 79 ms
6,940 KB
testcase_17 AC 23 ms
6,940 KB
testcase_18 AC 26 ms
6,944 KB
testcase_19 AC 45 ms
6,940 KB
testcase_20 AC 94 ms
6,940 KB
testcase_21 AC 61 ms
6,940 KB
testcase_22 AC 27 ms
6,944 KB
testcase_23 AC 33 ms
6,940 KB
testcase_24 AC 15 ms
6,940 KB
testcase_25 AC 86 ms
6,944 KB
testcase_26 AC 62 ms
6,940 KB
testcase_27 AC 90 ms
6,944 KB
testcase_28 AC 76 ms
6,940 KB
testcase_29 AC 66 ms
6,944 KB
testcase_30 AC 17 ms
6,944 KB
testcase_31 AC 38 ms
6,944 KB
testcase_32 AC 86 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
  int N, K;
  cin >> N >> K;
  
  vector<int> A(N);
  for(auto &x : A) cin >> x;
  sort(A.begin(), A.end());
  
  int cnt = 0;
  for(auto x : A){
    if(K - x >= 0) cnt++, K -= x;
  }
  
  cout << cnt << ' ' << K;
}
0