結果

問題 No.5 数字のブロック
ユーザー kanzaki_puyokanzaki_puyo
提出日時 2015-11-01 03:54:23
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 5 ms / 5,000 ms
コード長 464 bytes
コンパイル時間 787 ms
コンパイル使用メモリ 64,588 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-18 07:46:51
合計ジャッジ時間 1,595 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main()
{
    int l, n, num;
    int all = 0;
    int cnt = 0;
    vector<int> data;

    cin >> l >> n;
    for(int i=0; i<n; i++){
        cin >> num;
        data.push_back(num);
    }
    sort(data.begin(), data.end());
    for(vector<int>::iterator it = data.begin(); all += *it, it != data.end() && all<=l ; it++){
        cnt++;
    }
    cout << cnt << endl;
    return 0;
}
0