| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1337622 | islam_2010 | Crayfish scrivener (IOI12_scrivener) | C++20 | 1 ms | 344 KiB |
#include <bits/stdc++.h>
using namespace std;
string s;
void Init() {
s = "";
}
void TypeLetter(char L) {
s += L;
}
void UndoCommands(int U) {
s = s.substr(0, s.size() - U);
}
char GetLetter(int P) {
return s[P];
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
