It's easy, if you try

[백준/boj] 1037: 약수 (Python) 본문

알고리즘/파이썬(Python)

[백준/boj] 1037: 약수 (Python)

s5he2 2021. 2. 11. 01:03
반응형

문제

풀이

n = map(int, input())
nums = list(map(int, input().split()))

nums.sort()
print(nums[0] * nums[-1])

처음에 nums.pop(0) * nums[0] 로 풀었더니 당연히 ! 틀렸다.

배열의 마지막 요소를 얻어오기 위해 nums[-1] 을 사용하면 된다.

 

최초 발행 날짜: 2020-06-15

반응형
Comments