제출 #315640

#제출 시각아이디문제언어결과실행 시간메모리
315640Sorting버섯 세기 (IOI20_mushrooms)C++17
컴파일 에러
0 ms0 KiB
#include "mushrooms.h"
#include <bits/stdc++.h>

using namespace std;

int count_mushrooms(int n) {
	int cnt = 1;
    for(int i = 1; i < n; i += 2){
        vector<int> v{i, 0};
        if(i != n - 1) v.push_back(i + 1);
        cnt += v.size() - 1 - use_machine(v); 
    }
	return ;
}

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

mushrooms.cpp: In function 'int count_mushrooms(int)':
mushrooms.cpp:13:2: error: return-statement with no value, in function returning 'int' [-fpermissive]
   13 |  return ;
      |  ^~~~~~