Submission #1230478

#TimeUsernameProblemLanguageResultExecution timeMemory
1230478badge881Counting Mushrooms (IOI20_mushrooms)C++20
25 / 100
26 ms420 KiB
#include <bits/stdc++.h>
using namespace std;
int use_machine(vector<int>);

int count_mushrooms(int n)
{
	int ans = 1;

	for (int i = 1; i < n; i += 2)
		if (i == n - 1)
			ans += 1 - use_machine({i, 0});
		else
			ans += 2 - use_machine({i, 0, i + 1});
	return ans;
}
#Verdict Execution timeMemoryGrader output
Fetching results...