# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1079944 | Faisal_Saqib | Counting Mushrooms (IOI20_mushrooms) | C++17 | 142 ms | 596 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 "mushrooms.h"
int count_mushrooms(int n) {
std::vector<int> m;
int ans=0;
m.push_back(0);
for(int i=1;i<n;i++)
{
m.push_back(i);
int x=use_machine(m);
m.pop_back();
if(x==0)
ans++;
}
return ans+1;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |