Submission #464382

# Submission time Handle Problem Language Result Execution time Memory
464382 2021-08-13T06:16:41 Z fuad27 Password (RMI18_password) C++14
0 / 100
463 ms 200 KB
#include<bits/stdc++.h>
using namespace std;
int query(string s);
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 "";
}
# Verdict Execution time Memory Grader output
1 Incorrect 463 ms 200 KB Could not guess the password with 50000 queries.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 200 KB Token "-1" doesn't correspond to pattern "[a-b]{1,50}"
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 433 ms 200 KB Could not guess the password with 50000 queries.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 463 ms 200 KB Could not guess the password with 50000 queries.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 463 ms 200 KB Could not guess the password with 50000 queries.
2 Halted 0 ms 0 KB -