結果

問題 No.5 数字のブロック
ユーザー agisagis
提出日時 2017-03-27 20:58:40
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 5 ms / 5,000 ms
コード長 428 bytes
コンパイル時間 510 ms
コンパイル使用メモリ 60,100 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-18 10:58:49
合計ジャッジ時間 1,566 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
	int L,N;
	int W[10000];
	cin >> L;
	cin >> N;
	for (int i = 0;i <= N-1;i++) {
		cin >> W[i];
	}
	sort(W, W + N);
	int l = 0;	
	int j = 0;	//count
	while (j != N) {
		 l = l + W[j];
		if (l > L) {
			cout << j << endl;
			break;
		}else if (l == L) {
			cout << j + 1 << endl;
			break;
		}
		j++;
	}
	if (j == N) {
		cout << j << endl;
	}
	
	return 0;
}
0