結果

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

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;

#define REP(i,n) for (int i = 0;i < (n); i++)

int main()
{
    int L, N;
    cin >> L >> N;
    vector<int> Wi(N);
    
    REP(i, N) {
        cin >> Wi[i];
    }
    sort(Wi.begin(), Wi.end());
    
    int count = 0;
    REP(i, N) {
        if (L >= Wi[i]) {
            L -= Wi[i];
            count++;
        }
        else break;
    }
    cout << count << endl;
    
    return 0;
}
0