[JAVA] SWEA 3456 - 직사각형 길이 찾기

hyng·2022년 2월 25일
0

SWEA

목록 보기
42/78

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(" ");

            HashMap<Integer, Integer> map = new HashMap<>();

            for(int i=0; i<3; i++){
                int n = sc.nextInt();
                if(map.containsKey(n)){
                    map.replace(n, map.get(n)+1);
                }else{
                    map.put(n, 1);
                }
            }
            int ans = 0;
            int cnt = 4;
            for (Integer integer : map.keySet()) {
                if(cnt > map.get(integer))
                {
                    ans = integer;
                    cnt = map.get(integer);
                }
            }

            sb.append(ans).append("\n");
        }
        System.out.println(sb);
    }
}
profile
공부하고 알게 된 내용을 기록하는 블로그

0개의 댓글