제출 #347804

#제출 시각아이디문제언어결과실행 시간메모리
347804ponkungCounting Mushrooms (IOI20_mushrooms)C++14
0 / 100
0 ms364 KiB
#include "mushrooms.h"

int count_mushrooms(int n) {
	std::vector<int> m;
	for (int i = 0; i < n; i++)
		m.push_back(i);
	int c1 = use_machine(m);
	m = {0, 1};
	int c2 = use_machine(m);
	return c1+c2;
}
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…