728x90
반응형
문제 링크
https://www.acmicpc.net/problem/2908
풀이
num1, num2 = map(int, input().split())
new1 = (num1//100) + (num1%100//10)*10 + (num1 % 10)*100
new2 = (num2//100) + (num2%100//10)*10 + (num2 % 10)*100
print(max(new1, new2))
- 각 자리의 숫자를 구해 100의 자리 수와 1의 자리 수의 위치를 바꾸어 max()로 비교해 높은 값을 출력했다.
728x90
반응형
'알고리즘 정복하기! > 백준 문제풀이' 카테고리의 다른 글
백준 1978번 Python / Math (0) | 2022.02.08 |
---|---|
백준 10872번 Python / Math (0) | 2022.02.08 |
백준 4673번 Python / Math (0) | 2022.02.08 |
백준 3502번 Python / Math (0) | 2022.02.08 |
백준 4344번 Python / Math (0) | 2022.02.08 |
댓글