답안 #315048

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
315048 2020-10-22T01:35:21 Z Seanliu CONSUL (info1cup19_consul) C++14
컴파일 오류
0 ms 0 KB
#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);
}

Compilation message

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