Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- StringTokenizer
- Lv1
- 프로그래머스
- 문자열
- COS Pro
- 백준
- 오름차순 정렬
- 알고리즘
- lv0
- 스프링부트 도커
- lv2
- 클라이언트
- 프로그래머스 문자열 정렬
- Programmers
- 스프링부트 도커 배포
- index of
- Stack
- 삼각형의 완성조건
- Queue
- SWEA
- 버퍼
- 프로그래머스 풀이
- 백준 N과 M 자바
- 스프링부트 도커로 배포
- 자바
- 프로그래머스 자바
- 큐
- 이진수 변환
- java
- 스택
Archives
- Today
- Total
mun dev
[COS PRO 1급] 2-2 지하철 기다리기 자바(Java) 본문
문제링크
문제유형
빈 칸 채우기 문제
문제
class Main {
public int func_a(String times){
int hour = Integer.parseInt(times.substring(0, 2));
int minute = Integer.parseInt(times.substring(3));
return hour*60 + minute;
}
public int solution(String[] subwayTimes, String currentTime) {
int currentMinute = func_a(_____);
int INF = 1000000000;
int answer = INF;
for(int i = 0; i < subwayTimes.length; ++i){
int subwayMinute = func_a(_____);
if(_____){
answer = subwayMinute - currentMinute;
break;
}
}
if(answer == INF)
return -1;
return answer;
}
문제 풀이
class Main {
public int func_a(String times){
int hour = Integer.parseInt(times.substring(0, 2));
int minute = Integer.parseInt(times.substring(3));
return hour*60 + minute;
}
public int solution(String[] subwayTimes, String currentTime) {
int currentMinute = func_a(currentTime);
int INF = 1000000000;
int answer = INF;
for(int i = 0; i < subwayTimes.length; ++i){
int subwayMinute = func_a(subwayTimes[i]);
if(answer>subwayMinute-currentMinute && subwayMinute>=currentMinute){
answer = subwayMinute - currentMinute;
break;
}
}
if(answer == INF)
return -1;
return answer;
}
'알고리즘 > COS PRO 1급' 카테고리의 다른 글
[COS PRO 1급] 2-4 합이 k배가 되는 수 자바(Java) (0) | 2023.11.25 |
---|---|
[COS PRO 1급] 2-3 경품 당첨자를 구해주세요 자바(Java) (0) | 2023.11.25 |
[COS PRO 1급] 2-1 도서 대여점 운영 자바(Java) (0) | 2023.11.25 |
[COS PRO 1급] 1-10 주식으로 최대의 수익을 내세요 자바(Java) (0) | 2023.11.25 |
[COS PRO 1급] 1-9 계단 게임 자바(Java) (0) | 2023.11.25 |