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