반응형
백준 BAEKJOON 10818번 최소, 최대 [PYTHON/파이썬]
<문제 출처>
https://www.acmicpc.net/problem/10818
<풀이>
list 항목에서 최소값은 min, 최대값은 max 를 사용하면 출력할 수 있다.
<코드>
N = int(input())
lst = list(map(int, input().split()))
print(min(lst), max(lst))
반응형
'ALGORITHM > PYTHON' 카테고리의 다른 글
백준 BAEKJOON 3052번 나머지 [PYTHON/파이썬] (0) | 2022.09.05 |
---|---|
백준 BAEKJOON 2562번 최댓값 [PYTHON/파이썬] (0) | 2022.09.05 |
백준 BAEKJOON 1110번 더하기 사이클 [PYTHON/파이썬] (0) | 2022.09.03 |
백준 BAEKJOON 10951번 A+B - 4 [PYTHON/파이썬] (0) | 2022.09.03 |
백준 BAEKJOON 10952번 A+B - 5 [PYTHON/파이썬] (0) | 2022.09.03 |