728x90
반응형
단순 문자열 문제이다.
N = int(input())
a, b = list(input()), list(input())
for _ in range(N):
for i in range(len(a)):
if a[i] == '0':
a[i] = '1'
else:
a[i] = '0'
print("Deletion succeeded" if a == b else "Deletion failed")
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 10173번 니모를 찾아서(python) (0) | 2021.02.28 |
---|---|
백준 알고리즘 10102번 개표(python) (0) | 2021.02.28 |
백준 알고리즘 9046번 복호화(python) (0) | 2021.02.28 |
백준 알고리즘 8949번 대충 더해(python) (0) | 2021.02.28 |
백준 알고리즘 14490번 백대열(python) (0) | 2021.02.28 |