제출 #711770

#제출 시각아이디문제언어결과실행 시간메모리
711770mseebacher버섯 세기 (IOI20_mushrooms)C++17
0 / 100
1 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)) ans++; a.pop_back(); } return ans; }
#Verdict Execution timeMemoryGrader output
Fetching results...