T = int(input())
for test_case in range(1, T+1):
n, k = map(int,input().split())
scores = list(map(int,input().split()))
scores.sort()
result = 0
for plus in range(k):
result += scores.pop()
print(f'#{test_case} {result}')
N
, K
값을 받아옴.sort()
사용해 정렬K
번 리스트에서 .pop()
을 해 최대값을 빼서 더하고 출력D3의 난이도라기엔 D1~D2스러운 문제였다!