結果

問題 No.5 数字のブロック
ユーザー SiLeader
提出日時 2018-06-16 16:43:22
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 5 ms / 5,000 ms
コード長 471 bytes
コンパイル時間 582 ms
コンパイル使用メモリ 64,608 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-18 12:29:11
合計ジャッジ時間 1,525 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    int l, n;
    std::cin >> l >> n;

    std::vector<int> w(n);
    for (auto& wn : w) {
        std::cin >> wn;
    }
    std::sort(std::begin(w), std::end(w));

    int len = 0;
    for (std::size_t i = 0; i < w.size(); ++i) {
        
        len += w[i];
        if (len > l) {
            std::cout << i << std::endl;
            return 0;
        }
    }
    std::cout << n << std::endl;
}
0