모든 사람들의 점수를 구해서 1등의 점수를 찾고, 1등 점수와 같은 점수인 사람들의 수를 세서 답을 구한다.
import java.util.*;
class Solution
{
public static void main(String args[]) throws Exception
{
Scanner sc = new Scanner(System.in);
StringBuffer sb = new StringBuffer();
int T = sc.nextInt();
for(int tc=1; tc<=T; tc++){
sb.append("#").append(tc).append(" ");
int N = sc.nextInt();
int M = sc.nextInt();
int scores[] = new int[N];
int firstScore = 0;
for(int i=0; i<N; i++){
int score = 0;
for(int j=0; j<M; j++) {
score += sc.nextInt();
}
firstScore = Math.max(firstScore, score);
scores[i] = score;
}
int count = 0;
for(int i=0; i<N; i++){
if(firstScore == scores[i]){
count++;
}
}
sb.append(count).append(" ").append(firstScore).append("\n");
}
System.out.println(sb);
}
}