# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
588902 | LIF | Counting Mushrooms (IOI20_mushrooms) | C++14 | 200 ms | 292 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"
#include<bits/stdc++.h>
using namespace std;
int count_mushrooms(int n) {
std::vector <int> m;
int aans = 1;
m.push_back(0);
for(int i=1;i<n;i++)
{
m.push_back(i);
int ans = use_machine(m);
if(ans == 0)aans++; //that means the m include a,a;
m.pop_back();
}
return aans;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |