practivceAlgorithm/swexpertacademy

[SWEA][Python] 5185 이진수

findTheValue 2021. 9. 19. 20:39

16진수를 2진수로 바꾸는 문제. 파이썬 bin, int 등 변환 메서드를 이용 쉽게 변환

 

for test in range(1,int(input())+1):
    N, s = input().split()
    ans = ''
    for i in range(int(N)):
        ans += bin(int(s[i],16))[2:].zfill(4)
    print(f"#{test} {ans}")

'practivceAlgorithm > swexpertacademy' 카테고리의 다른 글

[SWEA][Python] 1231 중위순회  (0) 2021.09.23
[SWEA][Python] 5186 이진수2  (0) 2021.09.19
[SWEA][Python] 1220 magnetic  (0) 2021.08.27
[SWEA][Python] 1226 미로1  (0) 2021.08.25
[SWEA][Python] 1225 암호생성기  (0) 2021.08.25