제출 #1012367

#제출 시각아이디문제언어결과실행 시간메모리
1012367bachhoangxuan버섯 세기 (IOI20_mushrooms)C++17
25 / 100
81 ms596 KiB
#include "mushrooms.h"
#include<bits/stdc++.h>
using namespace std;

int count_mushrooms(int n) {
    int cnt=1;
    for(int i=1;i<n;i+=2){
        vector<int> x={i};
        x.push_back(0);
        if(i+1<n) x.push_back(i+1);
        cnt+=(int)x.size()-1-use_machine(x);
    }
	return cnt;
}
#Verdict Execution timeMemoryGrader output
Fetching results...