Submission #1079952

#TimeUsernameProblemLanguageResultExecution timeMemory
1079952Jawad_Akbar_JJCounting Mushrooms (IOI20_mushrooms)C++17
0 / 100
1 ms344 KiB
#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 timeMemoryGrader output
Fetching results...