[D3] 태혁이의 사랑은 타이밍 - 4299
성능 요약
메모리: 20,120 KB, 시간: 132 ms, 코드길이: 602 Bytes
제출 일자
2023-11-03 19:52
출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.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();
int check = sumTimes(11,11,11);
for(int tc = 1; tc <= T; tc++) {
int d = sc.nextInt();
int h = sc.nextInt();
int m = sc.nextInt();
int totalM = sumTimes(d,h,m);
System.out.println("#" + tc + " " + (totalM - check < 0 ? "-1" : totalM - check));
}
}
private static int sumTimes(int day, int hour, int min){
return day * 24 * 60 + hour * 60 + min;
}
}
'알고리즘 - SWEA > D3' 카테고리의 다른 글
[SW expert Academy] SWEA 7193번 승현이의 수학공부 자바(Java) (0) | 2023.11.04 |
---|---|
[SW expert Academy] SWEA 8888번 시험 자바(Java) (0) | 2023.11.04 |
[SW expert Academy] SWEA 7510번 상원이의 연속 합 자바(Java) (1) | 2023.11.03 |
[SW expert Academy] SWEA 5549번 홀수일까 짝수일까 자바(Java) (0) | 2023.11.02 |
[SW expert Academy] SWEA 8840번 아바바바 자바(Java) (0) | 2023.11.02 |