목록이진수 (1)
컴공생의 다이어리
[파이썬, Python] 백준 3460번 : 이진수
백준 3460번 : 이진수 (문제 바로가기) 내 코드 import sys T = int(input()) result = [] for _ in range(T): test_case = int(sys.stdin.readline().strip()) result.append([idx for idx, n in enumerate(format(test_case, 'b')[::-1]) if n == '1']) for r in result: print(" ".join(map(str, r)))
Development/Algorithm & Coding Test
2022. 4. 18. 00:02