-Code
from itertools import combinations
nums = list(map(int, input().split()))
two = [i|j for i, j in combinations(nums, 2)]
three = [i|j|k for i, j, k in combinations(nums, 3)]
res = 0
for el in two:
res ^= el
for el in three:
res ^= el
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 32216번 찬물 샤워 (0) | 2024.09.27 |
---|---|
[백준/파이썬] 32246번 빙고 막기 (1) | 2024.09.26 |
[백준/파이썬] 32342번 와우와 쿼리 (0) | 2024.09.24 |
[백준/파이썬] 32278번 선택 가능성이 가장 높은 자료형 (0) | 2024.09.23 |
[백준/파이썬] 32297번 문자열을 만들어요 (1) | 2024.09.22 |