結果

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

ソースコード

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){
			count--;
			break;
		} 
		sum +=v[i];
		count++;
	}
	cout << count << "\n";

	
}
0