結果

問題 No.5 数字のブロック
ユーザー K_Meraq6K_Meraq6
提出日時 2020-11-02 17:31:12
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 5 ms / 5,000 ms
コード長 417 bytes
コンパイル時間 613 ms
コンパイル使用メモリ 75,784 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-22 06:24:00
合計ジャッジ時間 1,535 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main() {
    int l, n; cin >> l >> n;
    vector<int> w(n);
    for(int i = 0; i < n; i++) {
        cin >> w.at(i);
    }
    sort(w.begin(), w.end());
    int c = 0, j = 0;
    while (c <= l) {
        if (j == n) {
            j++;
            break;
        }
        c += w.at(j);
        j++;
    }
    cout << j - 1 << endl;
}
0