#include <bits/stdc++.h>
#define ii pair < char , char >
#define fi first
#define se second
using namespace std;
const int N=1e6+5;
ii a[N];
char s[N];
int cnt=0;
int i=0;
void Init() {}
void TypeLetter(char L) {
a[i]={'T',L};
i++;
}
void UndoCommands(int U) {
a[i]={'U','0'+U};
i++;
}
int j=0;
char GetLetter(int P) {
if(cnt==0)
{
j=0;
while(i>0)
{
i--;
if(a[i].fi=='T')
{
s[j]=a[i].se;
j++;
}
else
{
i-=(a[i].se-'0');
}
}
}
cnt=1;
return s[P];
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
248 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
356 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
432 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1077 ms |
1916 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
209 ms |
2248 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |