728x90
300x250
import java.util.*;
import java.io.FileInputStream;
/*
사용하는 클래스명이 Solution 이어야 하므로, 가급적 Solution.java 를 사용할 것을 권장합니다.
이러한 상황에서도 동일하게 java Solution 명령으로 프로그램을 수행해볼 수 있습니다.
*/
class Solution
{
public static void main(String args[]) throws Exception
{
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
for(int tc=0;tc<T;tc++) {
int N = sc.nextInt();
int K = sc.nextInt();
int[] score = new int[N];
int sum =0;
for(int i=0;i<N;i++) {
score[i]=sc.nextInt();
}
Arrays.sort(score);
for(int i=0;i<K;i++) {
sum+=score[score.length-1-i];
}
System.out.println("#"+(tc+1)+" "+sum);
}
}
}
728x90
'알고리즘 > 그 외' 카테고리의 다른 글
SWEA - 8016. 홀수 피라미드 (JAVA) (0) | 2020.02.24 |
---|---|
SWEA - 5789. 현주의 상자 바꾸기 (0) | 2020.02.24 |
SWEA - 5431. 민석이의 과제 체크하기 (0) | 2020.02.23 |
SWEA - 1220. [S/W 문제해결 기본] 5일차 - Magnetic (0) | 2020.02.23 |
SWEA - 1217. [S/W 문제해결 기본] 4일차 - 거듭 제곱 (0) | 2020.02.23 |