https://swexpertacademy.com/main/solvingProblem/solvingProblem.do
정답
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 t=1; t<=T; t++)
{
int t1 = sc.nextInt();
int m1 = sc.nextInt();
int t2 = sc.nextInt();
int m2 = sc.nextInt();
int sum = ((t1*60)+m1)+((t2*60)+m2);
int ans_t=0;
int ans_n=0;
if(sum/60>12)
{
ans_t = sum/60-12;
}
else
{
ans_t = sum/60;
}
ans_n = sum%60;
System.out.printf("#%d %d %d\n", t,ans_t,ans_n);
}
}
}
'Java > SWEA' 카테고리의 다른 글
[JAVA] SWEA 1966. 숫자를 정렬하자 (0) | 2024.05.05 |
---|---|
[JAVA] SEWA 1970. 쉬운 거스름돈 (0) | 2024.05.05 |
[JAVA] SEWA 1979. 어디에 단어가 들어갈 수 있을까 (0) | 2024.05.04 |
[JAVA] SWEA 1983. 조교의 성적 매기기 (0) | 2024.05.04 |
[JAVA] SWEA 1984. 중간 평균값 구하기 (0) | 2024.05.03 |