Submission #1064719

#TimeUsernameProblemLanguageResultExecution timeMemory
1064719thatsgonzalezCounting Mushrooms (IOI20_mushrooms)C++14
0 / 100
0 ms344 KiB
#include "mushrooms.h"

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

	for(int i = 1; i<n; i++){
		if(use_machine({0,i})) ans++;
	}

	return ans;
}
#Verdict Execution timeMemoryGrader output
Fetching results...