# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
312666 | pere_gil | Counting Mushrooms (IOI20_mushrooms) | C++14 | 245 ms | 360 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 res=1;
for (int i = 1; i < n; i++){
m.push_back(i);
m.push_back(0);
if(use_machine(m)==0) res++;
m.clear();
}
return res;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |