728x90
반응형
풀이 :
단순 덧셈, 뺄셈
Code
public class Solution1976 {
public static void main(String[] args) throws IOException {
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
for (int tc = 1; tc <= T; tc++) {
int hourA = sc.nextInt();
int minA = sc.nextInt();
int hourB = sc.nextInt();
int minB = sc.nextInt();
int result_hour = 0;
int result_min = 0;
result_hour = hourA + hourB;
result_min = minA + minB;
if (result_min > 59) {
result_min -= 60; // %60 를 써서 나머지로 할수도 있음.
result_hour += 1; // /60 를 써서 몫으로 할수도 있음.
}
if (result_hour > 12) {
result_hour -= 12; // %12 로 해서 나머지로 할 수 있음.
}
System.out.println("#" + tc + " " + result_hour + " " + result_min);
}
}
}
728x90
반응형
'SWEA' 카테고리의 다른 글
swea 1983 [D2] 조교의 성적 매기기 JAVA (0) | 2023.11.22 |
---|---|
swea 1979 [D2] 어디에 단어가 들어갈 수 있을까 JAVA (0) | 2023.11.22 |
swea 1974 [D2] 스도쿠 검증 JAVA (0) | 2023.11.22 |
swea 1970 [D2] 쉬운 거스름돈 JAVA (0) | 2023.11.22 |
swea 1966 [D2] 숫자를 정렬하자 JAVA (1) | 2023.11.20 |