| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 305672 | amunduzbaev | Detecting Molecules (IOI16_molecules) | C++14 | 0 ms | 0 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 "molecules.h"
#include <bits/stdc++.h>
#include "grader.cpp"
using namespace std;
vector<int> find_subset(int l, int u, vector<int> a) {
vector<int>ans;
int sum=0,i=0;
while(sum+a[i]<=u){
ans.push_back(i);
sum+=a[i];
i++;
}
if(sum<l)
ans.clear();
return ans;
}
