Submission #333337

#TimeUsernameProblemLanguageResultExecution timeMemory
333337valerikkPassword (RMI18_password)C++17
10 / 100
72 ms620 KiB
#include <bits/stdc++.h> using namespace std; int query(string str); string guess(int n, int s) { string ans = ""; for (int i = 0; i < n; ++i) { for (char x = 'a'; x < 'a' + s; x++) { if (ans.size() < n) { ans.insert(ans.begin() + i, x); if (query(ans) != ans.size()) ans.erase(ans.begin() + i, ans.begin() + i + 1); } } } return ans; }

Compilation message (stderr)

password.cpp: In function 'std::string guess(int, int)':
password.cpp:10:28: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   10 |             if (ans.size() < n) {
      |                 ~~~~~~~~~~~^~~
password.cpp:12:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   12 |                 if (query(ans) != ans.size()) ans.erase(ans.begin() + i, ans.begin() + i + 1);
      |                     ~~~~~~~~~~~^~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...