728x90
<비트단위 논리연산자>
& | and |
| | or |
^ | xor |
~ | not |
6059 - 비트단위로 NOT 하여 출력하기
a = int(input())
print(~a) #비트 not
6060 - 비트단위로 AND 하여 출력하기
a, b = map(int, input().split())
print(a & b) #비트 and 연산
6061 - 비트단위로 OR 하여 출력하기
a, b = map(int, input().split())
print(a|b) # 비트 or 연산
6062 - 비트단위로 XOR 하여 출력하기
a, b = map(int, input().split())
print(a^b) #비트 xor 연산
728x90
'[Python]알고리즘 > 코드업' 카테고리의 다른 글
[기초-반복실행구조] 6071~6076 (0) | 2022.03.16 |
---|---|
[기초-3항연산, 조건/선택실행구조] 6063~6070 (0) | 2022.03.16 |
[기초-논리연산] 6052~6058 (0) | 2022.03.16 |
[기초-비교연산] 6048~6051 (0) | 2022.03.16 |
[기초-비트시프트연산] 6046~6047 (0) | 2022.03.16 |