# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1205125 | stdfloat | Counting Mushrooms (IOI20_mushrooms) | C++20 | 0 ms | 420 KiB |
#include <bits/stdc++.h>
#include "mushrooms.h"
// #include "grader.cpp"
using namespace std;
int count_mushrooms(int n) {
vector<int> x(n);
iota(x.begin(), x.end(), 0);
return (use_machine(x) >> 1) + 1;
}
// int use_machine(vector<int> x);
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |