| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1197049 | belgianbot | 크레이피쉬 글쓰는 기계 (IOI12_scrivener) | C++20 | 155 ms | 327680 KiB |
#include <bits/stdc++.h>
using namespace std;
vector<string> curr;
void Init() {
cin.tie(0);
}
void TypeLetter(char L) {
if (curr.empty()){
string s = "";
s += L;
curr.push_back(s);
}
else {
curr.push_back(curr.back());
curr.back() += L;
}
}
void UndoCommands(int U) {
curr.push_back(curr[curr.size()-U-1]);
}
char GetLetter(int P) {
return curr.back()[P];
}
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
