def solution(s):
zero_count = 0
round_count = 0
while s != "1":
zero_count += s.count("0")
round_count += 1
s = s.replace("0", "")
s = bin(len(s))[2:]
return [round_count, zero_count]
bin 함수를 이용하면 쉬운 문제였다.