結果

問題 No.5 数字のブロック
ユーザー poneko27714
提出日時 2016-08-03 19:27:50
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 337 bytes
コンパイル時間 520 ms
コンパイル使用メモリ 60,384 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-06 23:45:12
合計ジャッジ時間 1,650 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 27 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
	int l,n,count = 0,sum = 0;
	int v[10001];
	cin >> l >> n;
	for(int i=0; i<n; i++){
		cin >> v[i];
	}
	sort(v,v+n);

	for(int i=0; i<n+1; i++){
		if(sum == l) break;
		if(sum > l){
			count--;
			break;
		} 
		sum +=v[i];
		count++;
	}
	cout << count << "\n";
}
0