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
- 써니나타스
- wargame
- CTF
- 백준
- Web Hacking
- Network
- MySQL
- cryptography
- C
- php
- Database
- 구현
- HackCTF
- Web
- Forensics
- N0Named
- 사칙연산
- Text
- 그리디 알고리즘
- Incognito
- xcz.kr
- 문자열
- misc
- Python
- writeup
- Digital Forensics
- 수학
- 인코그니토
- SuNiNaTas
- 정렬
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 8741번 이진수 합 본문
[Baekjoon/Python3] 8741번 이진수 합
import sys
k = 2 ** int(sys.stdin.readline()) - 1
print(bin((1 + k) * k // 2)[2:])
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 9085번 더하기 (0) | 2020.12.05 |
---|---|
[Baekjoon/Python3] 8958번 OX퀴즈 (0) | 2020.12.05 |
[Baekjoon/Python3] 8393번 합 (0) | 2020.12.05 |
[Baekjoon/Python3] 8370번 Plane (0) | 2020.12.05 |
[Baekjoon/Python3] 7600번 문자가 몇갤까 (0) | 2020.12.05 |
Comments