제출 #315048

#제출 시각아이디문제언어결과실행 시간메모리
315048SeanliuCONSUL (info1cup19_consul)C++14
컴파일 에러
0 ms0 KiB
#include "grader.h"

int seed = 101;

inline int rnd(){
	return seed = (seed * 3 + 1) % 0xdefaced;
}

void solve(int N){
	for(int i = 0; i < 30; i++){
		int r = rnd() % N + 1;
		int v = getkth(r);
		int c = cnt(v);
		if(c > N / 3){
			say_answer(c);
			return;
		}
	}
	say_answer(-1);
}

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

consul.cpp: In function 'void solve(int)':
consul.cpp:12:11: error: 'getkth' was not declared in this scope
   12 |   int v = getkth(r);
      |           ^~~~~~