結果

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

ソースコード

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