백준 알고리즘 2729번 : 이진수 덧셈

Zoo Da·2022년 2월 11일
0

백준 알고리즘

목록 보기
323/337
post-thumbnail

링크

https://www.acmicpc.net/problem/2729

sol1) 구현

tc = int(input())
for _ in range(1, tc + 1):
  a,b = map(str, input().split())
  print(bin(int(a, 2) + int(b, 2))[2:])
profile
메모장 겸 블로그

0개의 댓글