[백준] #10817 세 수 python
2023. 1. 31. 06:00
https://www.acmicpc.net/problem/10817
📕 설명 📕
세 수를 리스트에 넣고 정렬한 후 1번째 인덱스인 중앙 값을 출력한다.
🧑🏻💻 나의 풀이 🧑🏻💻
print(sorted(list(map(int, input().split())))[1])
'Programming > Algorithm' 카테고리의 다른 글
[백준] #7567 그릇 python (0) | 2023.02.02 |
---|---|
[백준] #1789 수들의 합 python (0) | 2023.02.01 |
[백준] #5355 화성 수학 python (0) | 2023.01.30 |
[백준] #2530 인공지능 시계 python (0) | 2023.01.29 |
[백준] #1264 모음의 개수 python (0) | 2023.01.28 |