| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1327418 | dashka | Password (RMI18_password) | C++20 | 0 ms | 412 KiB |
#include <bits/stdc++.h>
using namespace std;
int query(string str);
string guess(int n, int s) {
string pw = "";
for (int i = 0; i < n; i++) {
for (int c = 0; c < s; c++) {
char ch = 'a' + c;
string t = pw + string(n, ch);
if ((int)query(t) > (int)pw.size()) {
pw += ch;
break;
}
}
}
return pw;
}| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
