結果

問題 No.5 数字のブロック
ユーザー gmnexe
提出日時 2019-02-25 16:27:25
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 302 bytes
コンパイル時間 1,633 ms
コンパイル使用メモリ 159,836 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-26 06:34:48
合計ジャッジ時間 2,364 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 27 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

typedef pair<int,int> PII;

int main(){
	int l,n,a[10000];
	cin>>l>>n;
	for (int i = 0; i < n; ++i){
		cin>>a[i];
	}

	sort(a,a+n);
	int total=0,cnt=0;
	for (int i = 0; i < n; ++i){
		if(total+a[i]<l){
			total+=a[i];
			cnt++;
		}
	}

	cout<<cnt<<endl;

}
0