# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
3912 | GhostCode | King of penalty (kriii1_K) | C++98 | 72 ms | 3212 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main(void){
long long c_time;
long long p_num;
long long pbm;
long long answer;
vector<long long> problem;
cin>>c_time;
cin>>p_num;
for(int t=0;t<p_num;t++){
cin>>pbm;
problem.push_back(pbm);
}
sort(problem.begin(),problem.end());
long long i=0,sum=0;
while(1){
sum += problem[i];
if(sum >= c_time){
break;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |