Submission #405783

#TimeUsernameProblemLanguageResultExecution timeMemory
405783ly20Counting Mushrooms (IOI20_mushrooms)C++17
10 / 100
253 ms200 KiB
#include "mushrooms.h"
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 21234;
int count_mushrooms(int n) {
	int resp = 1;
	for(int i  = 1; i < n; i++) {
        vector <int> temp;
        temp.push_back(0); temp.push_back(i);
        resp += 1 - use_machine(temp);
	}
	return resp;
}
#Verdict Execution timeMemoryGrader output
Fetching results...