본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 8741번 이진수 합

by 현장 2021. 11. 28.

-코드

n = int(input())
num = 2 ** n
print(bin((num * (num - 1)) // 2)[2:])