結果

問題 No.156 キャンディー・ボックス
ユーザー commy
提出日時 2017-10-09 21:28:01
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 634 ms
コンパイル使用メモリ 74,192 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-05 16:06:32
合計ジャッジ時間 1,554 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

#define REP(i, a, b) for (int i = int(a); i < int(b); i++)

using namespace std;

typedef long long int lli;

int main() {
    int N, M;
    cin >> N >> M;
    vector<int> C(N);
    REP (i, 0, N) cin >> C[i];
    sort(C.begin(), C.end());
    int cnt = 0;
    while (M > 0) {
        M -= C[cnt++];
    }
    cout << cnt - !!M << endl;
    return 0;
}
0