結果

問題 No.5 数字のブロック
ユーザー mayoko_
提出日時 2014-12-11 09:29:08
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
RE  
実行時間 -
コード長 710 bytes
コンパイル時間 832 ms
コンパイル使用メモリ 75,384 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-11 20:34:04
合計ジャッジ時間 4,712 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24 RE * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <sstream>
#include <string>
#include <vector>
#include <map>
#include <algorithm>
#include <iostream>
#include <utility>
#include <set>
#include <cctype>
#include <queue>
#include <stack>
#include <cstdio>
#include <cstdlib>
#include <cmath>

#define INF 1000000000

using namespace std;
typedef long long ll;

const int MAXN = 10100;
int w[MAXN];

int main(void) {
    int L, N;
    cin >> L;
    cin >> N;
    for (int i = 0; i < N; i++) {
        cin >> w[i];
    }
    sort(w, w+N);
    int ans = 0;
    while (1) {
        if (L >= w[ans]) {
            L -= w[ans];
            ans++;
        } else break;
    }
    cout << ans << endl;
    return 0;
}
0