답안 #464380

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
464380 2021-08-13T06:14:27 Z fuad27 Password (RMI18_password) C++14
컴파일 오류
0 ms 0 KB
#include<bits/stdc++.h>
using namespace std;
string guess(int n, int s) {
	string ans = "";
	for(int i = 0;i<s;i++) {
		ans+=char(i+'a');
	}
	do {
		if(query(ans.substr(0, n)) == n)return ans.substr(0, n);
	}while(next_permutation(ans.begin(), ans.end()));
	return "";
}

Compilation message

password.cpp: In function 'std::string guess(int, int)':
password.cpp:9:6: error: 'query' was not declared in this scope
    9 |   if(query(ans.substr(0, n)) == n)return ans.substr(0, n);
      |      ^~~~~