짱해커가 되어보자

boj 2399 본문

프로그래밍_일반/백준

boj 2399

Spadework 2020. 3. 9. 08:23

* Solved 기준 브론즈2 단순 풀이

input(); l = sorted(map(int, input().split()))
s,ll = 0,len(l)
for i in range(1, ll):
	s += (l[i]-l[i-1])*(ll-i)*i
print(s*2)

 

'프로그래밍_일반 > 백준' 카테고리의 다른 글

boj 13304  (0) 2020.03.11
boj 2810  (0) 2020.03.09
boj 2884  (0) 2020.03.08
boj 2484  (0) 2020.03.07
boj 14624  (0) 2020.03.07
Comments