728x90
[백준] 2864번 Python 파이썬
https://www.acmicpc.net/problem/2864
a,b = input().split() #먼저 첫째 줄에 두 수를 입력 받는다.
# replace() 함수를 이용하여 두 수의 합의 최소값을 구할 때는 6을 5로 바꾸고, 최대값을 구할 때는 5를 6으로 바꾸어 더해준다. → replace(old_value, new_value)
min = int(a.replace('6','5')) + int(b.replace('6','5'))
max = int(a.replace('5','6')) + int(b.replace('5','6'))
print(min,max)
'BAEKJOON (Python) > Greedy Algorithm' 카테고리의 다른 글
BAEKJOON_2839 "설탕 배경" PYTHON (0) | 2023.04.13 |
---|---|
BAEKJOON_1715 "카드 정렬하기" PYTHON (0) | 2023.04.13 |
BAEKJOON_1049 "기타줄" PYTHON (0) | 2023.04.10 |
BAEKJOON_16953 "A -> B" PYTHON (0) | 2023.04.06 |
BAEKJOON_1789 "수들의 합" PYTHON (0) | 2023.04.05 |