답안 #494378

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
494378 2021-12-15T11:00:44 Z Itamar Password (RMI18_password) C++14
0 / 100
0 ms 200 KB

#include <iostream>
using namespace std;

int query(string str);

string rec(int n, int s, string x, int it, int siz) {
	if (siz == n) {
		return x;
	}
	for (int i = 0; i < s; i++) {
		x[it] = 96 + i;
		if (query(x) == x.size()) {
			return rec(n, s, x, it + 1,siz+1);
		}
	}
	x[it] = x[it - 1];
	it--;
	return rec(n, s, x, it,siz);
}
string guess(int n, int s) {
	string x;
	x.resize(n);
	return rec(n, s, x, 0,0);
}

Compilation message

password.cpp: In function 'std::string rec(int, int, std::string, int, int)':
password.cpp:14:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   14 |   if (query(x) == x.size()) {
      |       ~~~~~~~~~^~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Runtime error 0 ms 200 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 0 ms 200 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 0 ms 200 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 0 ms 200 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 0 ms 200 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -