답안 #369465

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
369465 2021-02-21T17:53:35 Z sad CONSUL (info1cup19_consul) C++14
컴파일 오류
0 ms 0 KB
#include "grader.h"
#include "bits/stdc++.h"
#define fi first
#define se second
#define pb push_back
#define ll long long
void solve(int n)
{
    for(int i=1;i<n+1;i++)
    {
        int x=kth(i);
        int y=cnt(x);
        if(y>n/3)return x;
    }return -1;
}

Compilation message

consul.cpp: In function 'void solve(int)':
consul.cpp:13:25: error: return-statement with a value, in function returning 'void' [-fpermissive]
   13 |         if(y>n/3)return x;
      |                         ^
consul.cpp:14:14: error: return-statement with a value, in function returning 'void' [-fpermissive]
   14 |     }return -1;
      |              ^