プログラマ-予算(Lv 1)
1830 ワード
#include <iostream>
#include <stdio.h>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
int solution(vector<int> d, int budget) {
int answer = 0;
int Result = 0;
sort(d.begin(), d.end());
for(int i=0; i<d.size(); i++)
{
Result +=d[i];
if(Result > budget)
{
break;
}
answer ++;
}
return answer;
}
Reference
この問題について(プログラマ-予算(Lv 1)), 我々は、より多くの情報をここで見つけました https://velog.io/@imalive77/프로그래머스-예산Lv1テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol