[JAVA]SWEA 6913-東哲のプログラミング大会
全員の点数を求めることで、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);
}
}
Reference
この問題について([JAVA]SWEA 6913-東哲のプログラミング大会), 我々は、より多くの情報をここで見つけました https://velog.io/@gkdud583/JAVA-SWEA-6913-동철이의-프로그래밍-대회テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol