[JAVA] SWEA 3142 - 영준이와 신비한 뿔의 숲

hyng·2022년 3월 30일
0

SWEA

목록 보기
61/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 TC = sc.nextInt();
        for(int tc=1; tc<=TC; tc++) {
            sb.append("#").append(tc).append(" ");

            int N = sc.nextInt();
            int M = sc.nextInt();

            boolean isBreak = false;
            for(int i=0; i<=N/2; i++){
                for(int j=0; j<=N; j++){
                    if(i + j == M){
                        if(i * 2 + j == N){
                            sb.append(j).append(" ").append(i).append("\n");
                            isBreak = true;
                            break;
                        }
                    }
                }
                if(isBreak){
                    break;
                }
            }
        }
        System.out.println(sb);
    }
}
profile
공부하고 알게 된 내용을 기록하는 블로그

0개의 댓글