Submission #1064721

#TimeUsernameProblemLanguageResultExecution timeMemory
1064721thatsgonzalez버섯 세기 (IOI20_mushrooms)C++14
10 / 100
135 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...