# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1079952 | Jawad_Akbar_JJ | Counting Mushrooms (IOI20_mushrooms) | C++17 | 1 ms | 344 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 <iostream>
#include <vector>
#include "mushrooms.h"
using namespace std;
int count_mushrooms(int n){
int A = 1;
for (int i=1;i<n;i+=2){
if (i + 1 < n){
int ans = use_machine({i, 0, i+1, 0});
if (ans == 0)
A += 2;
else if (ans != 3)
A++;
}
else{
A += use_machine({i, 0}) == 0;
}
}
return A;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |