제출 #411614

#제출 시각아이디문제언어결과실행 시간메모리
411614JUANDI321버섯 세기 (IOI20_mushrooms)C++17
컴파일 에러
0 ms0 KiB
#include <iostream> #include <vector> using namespace std; vector<int> x; int count_mushrooms(int n) { long long A = 1, B = 0; x.push_back(0); for(int i = 1; i<n; i++) { x.push_back(i); int p = use_machine(x); if(p==0)A++; x.pop_back(); } return A; }

컴파일 시 표준 에러 (stderr) 메시지

mushrooms.cpp: In function 'int count_mushrooms(int)':
mushrooms.cpp:13:17: error: 'use_machine' was not declared in this scope
   13 |         int p = use_machine(x);
      |                 ^~~~~~~~~~~
mushrooms.cpp:8:22: warning: unused variable 'B' [-Wunused-variable]
    8 |     long long A = 1, B = 0;
      |                      ^