[JAVA] SWEA 6913 - 동철이의 프로그래밍 대회

hyng·2022년 2월 22일
0

SWEA

목록 보기
39/78

모든 사람들의 점수를 구해서 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);

    }
}
profile
공부하고 알게 된 내용을 기록하는 블로그

0개의 댓글