답안 #777136

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
777136 2023-07-08T17:39:02 Z LeaRouse CONSUL (info1cup19_consul) C++14
컴파일 오류
0 ms 0 KB
#include<bits/stdc++.h>
#include <grader.h>
#define ff first
#define ss second
#define fastio ios_base::sync_with_stdio(0); cin.tie(0);
#define ll long long
using namespace std;
map<int,int>m;
void say_answer(int n){
    for(int i=0;i<n;i++){
        m[kth(i+1)]++;
    }
    for(auto it:m){
        if(it.ss>n/3)   return it.ff;
    }
    return -1;
}

Compilation message

consul.cpp: In function 'void say_answer(int)':
consul.cpp:3:12: error: return-statement with a value, in function returning 'void' [-fpermissive]
    3 | #define ff first
      |            ^
consul.cpp:14:35: note: in expansion of macro 'ff'
   14 |         if(it.ss>n/3)   return it.ff;
      |                                   ^~
consul.cpp:16:12: error: return-statement with a value, in function returning 'void' [-fpermissive]
   16 |     return -1;
      |            ^~