[JAVA] SWEA 3431 - 준환이의 운동관리

hyng·2022년 1월 26일
0

SWEA

목록 보기
19/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(" ");

            int L = sc.nextInt();
            int U = sc.nextInt();
            int X = sc.nextInt();

            if(X < L)sb.append(L-X);
            else if(X < U)sb.append(0);
            else sb.append(-1);

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

0개의 댓글