제출 #1046971

#제출 시각아이디문제언어결과실행 시간메모리
1046971amirhoseinfar1385Counting Mushrooms (IOI20_mushrooms)C++17
10 / 100
120 ms596 KiB
#include "mushrooms.h"
#include<bits/stdc++.h>
using namespace std;

int count_mushrooms(int n) {
	int ret=1;
	std::vector<int> m;
	for(int i=1;i<n;i++){
		m={0,i};
		if(use_machine(m)){
			//hehe
		}else{
			ret++;
		}
	}
	//int c2 = use_machine(m);
	return ret;
}
#Verdict Execution timeMemoryGrader output
Fetching results...