Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 캐치카페
- 더현대서울 맛집
- PYTHON
- 백준
- Baekjoon
- Kaggle
- 맥북
- 자연어처리
- github
- hackerrank
- 코로나19
- programmers
- 데이콘
- gs25
- ubuntu
- 편스토랑 우승상품
- SW Expert Academy
- Docker
- 우분투
- 프로그래머스 파이썬
- dacon
- ChatGPT
- leetcode
- 파이썬
- Real or Not? NLP with Disaster Tweets
- Git
- AI 경진대회
- 금융문자분석경진대회
- 프로그래머스
- 편스토랑
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 12813번 : 이진수 연산 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 이진수 연산 입니다.
Solution
def calculate_binary(A, B):
MASK = pow(2, 100000) - 1
print(bin(A & B)[2:].zfill(100000))
print(bin(A | B)[2:].zfill(100000))
print(bin(A ^ B)[2:].zfill(100000))
print(bin(A ^ MASK)[2:].zfill(100000))
print(bin(B ^ MASK)[2:].zfill(100000))
if __name__ == "__main__":
A = int(input(), 2)
B = int(input(), 2)
calculate_binary(A, B)
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 14915번 : 진수 변환기 (Python) (0) | 2021.08.21 |
---|---|
[BaekJoon] 5598번 : 카이사르 암호 (Python) (0) | 2021.08.20 |
[BaekJoon] 6603번 : 로또 (Python) (0) | 2021.08.18 |
[BaekJoon] 1371번 : 가장 많은 글자 (Python) (0) | 2021.08.17 |
[BaekJoon] 2439번 : 별 찍기 - 2 (Python) (0) | 2021.08.16 |
Comments