제출 #588902

#제출 시각아이디문제언어결과실행 시간메모리
588902LIF버섯 세기 (IOI20_mushrooms)C++14
10 / 100
200 ms292 KiB
#include "mushrooms.h" #include<bits/stdc++.h> using namespace std; int count_mushrooms(int n) { std::vector <int> m; int aans = 1; m.push_back(0); for(int i=1;i<n;i++) { m.push_back(i); int ans = use_machine(m); if(ans == 0)aans++; //that means the m include a,a; m.pop_back(); } return aans; }
#Verdict Execution timeMemoryGrader output
Fetching results...