# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
867698 | 2023-10-29T08:43:37 Z | franfill | Password (RMI18_password) | C++17 | 0 ms | 444 KB |
#include<bits/stdc++.h> using namespace std; int query(string S); string cur = ""; int N, S; int solve(int i, char c) { if (c > 'z' || cur.size() == N) return 0; string tr = cur.substr(0, i); tr += c; tr += cur.substr(i, ((int)cur.size())-i); if (query(tr) == tr.size()) { int ans = 1; cur = tr; ans += solve(i, c); ans += solve(i+ans, c+1); return ans; } else return solve(i, c+1); } string guess(int N, int S) { ::N = N; ::S = S; cur = ""; solve(0, 'a'); return cur; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 0 ms | 436 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 0 ms | 436 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 0 ms | 444 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 0 ms | 436 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 0 ms | 436 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |