파이썬의 int, bin 메서드를 사용해 풀이
import sys
input = sys.stdin.readline
for test in range(int(input())):
a, b = map(lambda x: int(x, 2), input().split())
print(bin(a + b)[2:])
'practivceAlgorithm > 백준' 카테고리의 다른 글
[백준][Python] 20168 골목대장 호석 (0) | 2021.10.20 |
---|---|
[백준][Python] 2469 사다리 타기 (0) | 2021.10.20 |
[백준][Python] 1987 알파뱃 (0) | 2021.10.19 |
[백준][Python] 18115 카드 놓기 (0) | 2021.10.19 |
[백준][Python] 18429 근손실 (0) | 2021.10.19 |