← Back to List
20540번: 연길이의 이상형 ↗
Solutions
Python 3
79 B | 79 chars
s="EISNTFJP" for i in input(): k=s.index(i) print(s[2*(k//2)+1-k%2],end="")