| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1292742 | kahoul | 버섯 세기 (IOI20_mushrooms) | C++20 | 0 ms | 0 KiB |
#include "mushrooms.h"
using namespace std;
int count_mushrooms(int n) {
int resp = 0;
for (int i = 1; i <= n; i += 2) {
vector<int> m = {i, 0, i + 1};
resp += 2 - use_macine(m);
}
return resp;
}
