반응형
[ Contents ]
1. 문제 (링크 참조)
https://www.acmicpc.net/problem/20540
2. 문제 풀이
해당 MBTI의 이상형을 출력합니다.
3. 코드
import sys
input = sys.stdin.readline
# 입력
s = input().rstrip()
li = ['E', 'I', 'S', 'N', 'T', 'F', 'J', 'P']
for c in s:
li.remove(c)
res = ''.join(li)
print(res)
반응형
'Algorithm' 카테고리의 다른 글
[구현/수학] 백준 11367 Reprot Card Time - 파이썬(Python) (0) | 2023.03.26 |
---|---|
[구현/수학] 백준 17094 Serious Problem - 파이썬(Python) (0) | 2023.03.25 |
[구현/수학] 백준 5724 파인만 - 파이썬(Python) (0) | 2023.03.23 |
[구현/수학] 백준 13311 행운의 편지 - 파이썬(Python) (0) | 2023.03.22 |
[구현/수학] 백준 14568 2017 연세대학교 프로그래밍 경시대회 - 파이썬(Python) (0) | 2023.03.21 |
댓글