Problem Solving/CT-Python

문제 3460 https://www.acmicpc.net/problem/3460 3460번: 이진수 양의 정수 n이 주어졌을 때, 이를 이진수로 나타냈을 때 1의 위치를 모두 찾는 프로그램을 작성하시오. 최하위 비트(least significant bit, lsb)의 위치는 0이다. www.acmicpc.net 3460.py n = int(input()) for _ in range(n): a = bin(int(input()))[2:] for i in range(len(a)): if a[-i-1] == '1': print(i, end = " ")
White Asher
'Problem Solving/CT-Python' 카테고리의 글 목록 (5 Page)