13866. 팀 나누기
solution 1 : 68ms
# idea 1 : pop으로 min, max를 추출함과 동시에 나머지의 합 정해짐
L = list(map(int, input().split()))
m = L.pop(L.index(min(L)))
M = L.pop(L.index(max(L)))
print(abs(m+M-sum(L)))
solution 2 : 72ms
# idea 2 : sorted한 후 min, max와 나머지를 index로 구하기
L = sorted(map(int, input().split()))
print(abs((L[0]+L[3])-(L[1]+L[2])))
Author And Source
이 문제에 관하여(13866. 팀 나누기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@py_code/13866.-팀-나누기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)