Submission #773163

#TimeUsernameProblemLanguageResultExecution timeMemory
773163aykhnPassword (RMI18_password)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> // author: aykhn using namespace std; typedef long long ll; int query(string str); string guess(int n, int s) { string ans = ""; int prev; string x = "a"; for (int i = 0; i < s; i++) { ans = x + ans; int X = query(ans); prev = max(X, prev); if (!X) ans = ans.substr(1, (int)(ans.length()) - 1); for (int j = 1; j <= ans.length(); j++) { string asdasdasd = ans; string asd = ans.substr(0, j); string assd = ""; if (j != ans.length()) assd = ans.substr(j, (int)(ans.length()) - j); ans = asd; ans += x; ans += assd; int y = query(ans); if (y <= prev) { ans = asdasdasd; } else prev = y; } x[0]++; if (ans.legth() > 100) { return "asdasdasdasdasd"; } } return ans; }

Compilation message (stderr)

password.cpp: In function 'std::string guess(int, int)':
password.cpp:24:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   24 |         for (int j = 1; j <= ans.length(); j++)
      |                         ~~^~~~~~~~~~~~~~~
password.cpp:29:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   29 |             if (j != ans.length()) assd = ans.substr(j, (int)(ans.length()) - j);
      |                 ~~^~~~~~~~~~~~~~~
password.cpp:43:17: error: 'std::string' {aka 'class std::__cxx11::basic_string<char>'} has no member named 'legth'; did you mean 'length'?
   43 |         if (ans.legth() > 100)
      |                 ^~~~~
      |                 length