[백준] 백준 Python3 14215번 문제 및 소스코드

2024. 10. 8. 13:29Coding/백준-Python

1. 문제 링크

https://www.acmicpc.net/problem/14215

2. 문제

 

3. 소스코드

ls = sorted(list(map(int, input().split())))
if ls[0] + ls[1] > ls[2]:
    print(sum(ls))
else:
    print((ls[0]+ls[1])*2-1)