Submission #432475

#TimeUsernameProblemLanguageResultExecution timeMemory
432475Rouge_HugoCounting Mushrooms (IOI20_mushrooms)C++14
10 / 100
212 ms256 KiB
#include<bits/stdc++.h>
#include "mushrooms.h"
#define ll long long
#define fi first
#define se second
#define pb push_back
using namespace std;
vector<int>v;
int count_mushrooms(int n) {
    int a=1,b=0;
	for(int i=1;i<n;i++)
    {
        v.clear();v.pb(0);v.pb(i);
        if(use_machine(v)==1)b++;
        else a++;
    }
    return a;
}
#Verdict Execution timeMemoryGrader output
Fetching results...