답안 #41030

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
41030 2018-02-12T06:26:05 Z meylady Hotter Colder (IOI10_hottercolder) C++14
컴파일 오류
0 ms 0 KB
int HC(int N){
	Guess(1);
	for (int i = 2; i <= N; i++) {
		if (Guess(i) == -1)return i - 1;
	}
	return N;
}

Compilation message

hottercolder.cpp: In function 'int HC(int)':
hottercolder.cpp:2:2: error: 'Guess' was not declared in this scope
  Guess(1);
  ^~~~~