Submission #1294793

#TimeUsernameProblemLanguageResultExecution timeMemory
1294793lucasdmyCounting Mushrooms (IOI20_mushrooms)C++20
0 / 100
0 ms332 KiB
#include "mushrooms.h"
#include <bits/stdc++.h>
using namespace std;
int count_mushrooms(int n){
    int resp=0;
    for(int k=1;k<n;k+=2){
        resp+=2-use_machine({k, 0, k+1});
    }
    if(n%2==1){
        resp+=1-use_machine({0, n-1});
    }
    return resp;
}
#Verdict Execution timeMemoryGrader output
Fetching results...