[SWEA] #1204 최빈수 구하기
Link
Code
import java.util.Scanner;
class Solution {
public static void main(String args[]) throws Exception {
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
for(int testCase = 1; testCase <= T; testCase++) {
int t = sc.nextInt();
int[] arr = new int[101];
for (int i = 0; i < 1000; i++) {
int temp = sc.nextInt();
arr[temp]++;
}
int max = 0;
int result = 0;
for (int i = 0; i < 101; i++) {
if (max <= arr[i]) {
max = arr[i];
result = i;
}
}
System.out.printf("#%d %d\n", t, result);
}
}
}
Solution
크기 101의 배열 arr를 선언해 각 점수대의 인원수를 체크하고 arr의 최대값 인덱스를 출력한다.
Author And Source
이 문제에 관하여([SWEA] #1204 최빈수 구하기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@kwonsc/SWEA-1204-최빈수-구하기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)