# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
305371 | 2020-09-23T01:44:29 Z | daniel920712 | 버섯 세기 (IOI20_mushrooms) | C++14 | 0 ms | 256 KB |
#include "mushrooms.h" #include <vector> using namespace std; int count_mushrooms(int n) { int ans=0,t; vector<int> m; vector<int> fin; for (int i=1; i<n;i+=2) { m.clear(); m.push_back(0); m.push_back(i); if(i+1==n) ans+=use_machine(m); else { m.push_back(i+1); t=use_machine(m); if(t==2) ans++; else if(t==1) { fin.push_back(i); fin.push_back(i+1); } } } ans+=(use_machine(fin)+1)/2; return ans; }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 256 KB | Answer is not correct. |
2 | Halted | 0 ms | 0 KB | - |