#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
#pragma region 입출력 속도향상
#define FAST_IO() \
{\
ios::sync_with_stdio(false);\
cin.tie(NULL); \
cout.tie(NULL); \
}\
#pragma endregion
int main()
{
FAST_IO();
string s, t;
cin >> s >> t;
while (t.length() != s.length())
{
if (t.back() != 'A')
{
t.pop_back();
reverse(t.begin(), t.end());
}
else
t.pop_back();
}
cout << (t == s);
return 0;
}
'코딩테스트 > 백준' 카테고리의 다른 글
[실3] 11659 - 구간 합 구하기 4 (0) | 2023.10.08 |
---|---|
[골5] 1106 - 호텔 (0) | 2023.10.08 |
[실1] 2527 - 직사각형 (0) | 2023.10.06 |
[실1] 1629 - 곱셈 (0) | 2023.10.06 |
[실1] 1309 - 동물원 (0) | 2023.10.06 |