Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 구현
- misc
- 사칙연산
- MySQL
- Incognito
- C
- Web
- Database
- Web Hacking
- cryptography
- xcz.kr
- 정렬
- SuNiNaTas
- 수학
- php
- Python
- HackCTF
- 문자열
- 백준
- 인코그니토
- N0Named
- Digital Forensics
- Forensics
- CTF
- Text
- writeup
- 써니나타스
- wargame
- 그리디 알고리즘
- Network
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 3460번 이진수 본문
[Baekjoon/Python3] 3460번 이진수
t = int(input())
for i in range(t):
n = int(input())
n = str(bin(n)[2:])
for j in range(1, len(n) + 1):
if n[-j] == '1':
print(j - 1, end=' ')
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 4153번 직각삼각형 (0) | 2020.12.04 |
---|---|
[Baekjoon/Python3] 4101번 크냐? (0) | 2020.12.04 |
[Baekjoon/Python3] 3062번 수 뒤집기 (0) | 2020.12.04 |
[Baekjoon/Python3] 3052번 나머지 (0) | 2020.12.04 |
[Baekjoon/Python3] 3049번 다각형의 대각선 (0) | 2020.12.04 |
Comments