Submission #852839

#TimeUsernameProblemLanguageResultExecution timeMemory
852839LucaLucaMPassword (RMI18_password)C++17
0 / 100
277 ms432 KiB
#ifndef PASSWORD_H_INCLUDED #define PASSWORD_H_INCLUDED #include <bits/stdc++.h> #warning That's the baby, that's not my baby typedef long long ll; using namespace std; int query (string str); string guess (int n, int s) { string answer = ""; while ((int) answer.size() < n) { int m = (int) answer.size(); for (int i = 0; i < s; i++) { string q = answer + string(n - m, char(i + 'a')); int k = query(q); if (k != m) { for (int j = m; j < k; j++) { answer += char(i + 'a'); } break; } } } return answer; } #endif // PASSWORD_H_INCLUDED

Compilation message (stderr)

password.cpp:5:2: warning: #warning That's the baby, that's not my baby [-Wcpp]
    5 | #warning That's the baby, that's not my baby
      |  ^~~~~~~
#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...