[SW10804] 문자열의 거울상
✏️ 𝗔𝗹𝗴𝗼𝗿𝗶𝘁𝗵𝗺/SW Expert Academy

[SW10804] 문자열의 거울상

 

 SW Expert Academy- 문자열의 거울상 

문제 링크

https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=3&contestProbId=AXTC0x16D8EDFASe&categoryId=AXTC0x16D8EDFASe&categoryType=CODE&problemTitle=&orderBy=FIRST_REG_DATETIME&selectCodeLang=ALL&select-1=3&pageSize=10&pageIndex=3 

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

 

문제 입력

2
bdppq
qqqqpppbbd
#1 pqqbd
#2 bddqqqpppp

 

문제 풀이

import sys

sys.stdin = open('input.txt', 'rt')
T = int(input())
mirror = {'b': 'd', 'p': 'q', 'd': 'b', 'q': 'p'}

for t in range(T):
    s = list(input())
    for i in range(len(s)):
        s[i] = mirror[s[i]]

    print(f'#{t + 1}', ''.join(reversed(s)))

마치 거울을 비추듯 b, d 를 서로 바꾸고 p, q 를 서로 바꿔 문자열을 거꾸로 출력해주면 됩니다.

 

 

 

 

 

 

 

 

 

# SW Expert 문자열의거울상 python 파이썬


 

728x90