結果

問題 No.5 数字のブロック
ユーザー masamasa
提出日時 2015-01-18 08:08:07
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 4 ms / 5,000 ms
コード長 451 bytes
コンパイル時間 813 ms
コンパイル使用メモリ 65,388 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-17 22:18:42
合計ジャッジ時間 1,423 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#include <utility>

using namespace std;

int main() {
	int N, L;
	vector<int> W;

	cin >> L >> N;
	W.assign(N, 0);
	for (int i = 0; i < N; i++) {
		cin >> W[i];
	}
	sort(W.begin(), W.end());

	int ans = 0;
	int total = 0;

	for (int i = 0; i < N; i++) {
		if (total + W[i] <= L) {
			total += W[i];
			ans++;
		} else {
			break;
		}
	}

	cout << ans << endl;
	return 0;
}
0