[백준 12904] A와 B

Junyoung Park·2022년 4월 12일
0

코딩테스트

목록 보기
359/631
post-thumbnail

1. 문제 설명

A와 B

2. 문제 분석

문자열 개수의 차만큼 주어진 조건대로 A 또는 B를 체크.

3. 나의 풀이

import sys
import heapq

s = list(sys.stdin.readline().rstrip())
t = list(sys.stdin.readline().rstrip())
diff = len(t) - len(s)
for _ in range(diff):
    if t[-1] == 'A': t.pop(-1)
    else:
        t.pop(-1)
        t.reverse()
if ''.join(s) == ''.join(t): print(1)
else: print(0)
profile
JUST DO IT

0개의 댓글