제출 #697069

#제출 시각아이디문제언어결과실행 시간메모리
697069garam1732Counting Mushrooms (IOI20_mushrooms)C++14
25 / 100
113 ms256 KiB
#include "mushrooms.h"
#include <bits/stdc++.h>
using namespace std;

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

	std::vector<int> m;
	for(int i = 2; i <= n; i += 2) {
        m = {i-1, 0, i};
        if(i == n) m.pop_back();

        res += (int)m.size()-1-use_machine(m);
	}

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