제출 #711773

#제출 시각아이디문제언어결과실행 시간메모리
711773mseebacher버섯 세기 (IOI20_mushrooms)C++17
10 / 100
219 ms296 KiB
#include "mushrooms.h" #include<bits/stdc++.h> #define ll long long using namespace std; int count_mushrooms(int n){ vector<int> a; a.push_back(0); int ans = 1; for(int i = 1;i<n;i++){ a.push_back(i); if(use_machine(a) == 0) ans++; a.pop_back(); } return ans; }
#Verdict Execution timeMemoryGrader output
Fetching results...