728x90
반응형
단순 문자열 문제이다.
for case in range(int(input())):
b = int(input())
s = input().replace('O', '0')
s = s.replace('I', '1')
res = "".join([chr(int(s[8*i:8*(i+1)], 2)) for i in range(b)])
print(f"Case #{case+1}: {res}")
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 15667번 2018 연세대학교 프로그래밍 경진대회(python) (0) | 2021.02.27 |
---|---|
백준 알고리즘 15372번 A Simple Problem.(python) (0) | 2021.02.27 |
백준 알고리즘 11944번 NN(python) (0) | 2021.02.26 |
백준 알고리즘 11816번 8진수, 10진수, 16진수(python) (0) | 2021.02.26 |
백준 알고리즘 11575번 Affine Cipher(python) (0) | 2021.02.26 |