답안 #174619

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
174619 2020-01-06T13:27:46 Z juggernaut Xoractive (IZhO19_xoractive) C++14
컴파일 오류
0 ms 0 KB
#include "interactive.h"
#include<bits/stdc++.h>
using namespace std;
#define int long long int
vector<int> guess(int n) {
	vector <int> ans;
	for (int i = 1; i <= n; i++) {
		ans.push_back(ask(i));
	}
	return ans;
}

Compilation message

/tmp/ccFnGjg5.o: In function `main':
grader.cpp:(.text.startup+0x1a6): undefined reference to `guess(int)'
collect2: error: ld returned 1 exit status