結果

問題 No.156 キャンディー・ボックス
ユーザー test
提出日時 2020-09-06 03:33:15
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 436 bytes
コンパイル時間 1,685 ms
コンパイル使用メモリ 170,972 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-29 06:30:25
合計ジャッジ時間 2,603 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, ss, ee) for (int i = ss; i < ee; ++i)
using namespace std;

int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);

  int N, M;
  cin >> N >> M;
  vector<int> v(N);
  rep(i, 0, N) { cin >> v[i]; }
  sort(v.begin(), v.end());
  int ans = 0;
  while (0 < M) {
    // cout << M << " " << v[ans] << endl;
    M -= v[ans];
    ans++;
    if (M < 0) ans--;
  }
  cout << ans << endl;
  getchar();
}
0