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
- 동적계획법
- 너비 우선 탐색
- dfs
- SQL 고득점 KIT
- 프로그래머스
- 깊이 우선 탐색
- Lv. 3
- Dynamic Programming
- 자바스크립트
- Java
- group by
- 티스토리챌린지
- select
- 파이썬
- level 3
- 오블완
- SQL
- programmers
- join
- Lv. 2
- Lv. 1
- Lv. 0
- C언어
- softeer
- javascript
- DP
- Python
- bfs
- LEVEL 2
- 소프티어
Archives
- Today
- Total
몸과 마음이 건전한 SW 개발자
프로그래머스 [Lv. 1] [PCCP 기출문제] 1번 / 동영상 재생기 {언어 : JavaScript} 본문
문제 링크
https://school.programmers.co.kr/learn/courses/30/lessons/340213?language=javascript
정답 코드
function solution(video_len, pos, op_start, op_end, commands) {
const getTime = (time) => {
const [hh, mm] = time.split(":");
return hh * 60 + mm * 1;
}
const video_end = getTime(video_len);
let current = getTime(pos);
const opening_start = getTime(op_start);
const opening_end = getTime(op_end);
for (const command of commands) {
// 현 위치가 오프닝 위치인가?
if (current <= opening_end && current >= opening_start) {
current = opening_end;
}
if (command === "prev") {
current = current > 10 ? current - 10: 0;
} else {
// if (command === "next")
current = current < video_end - 10 ? current + 10: video_end;
}
// 현 위치가 오프닝 위치인가?
if (current <= opening_end && current >= opening_start) {
current = opening_end;
}
}
const hour = Math.floor(current/60);
const string_hour = hour > 9 ? String(hour) : "0" + String(hour);
const minute = current % 60;
const string_minute = minute > 9 ? String(minute) : "0" + String(minute);
const answer = string_hour + ":" + string_minute;
return answer;
}
풀이 방법
- 이 함수는 비디오의 길이와 현재 위치, 오프닝 시간, 명령어를 받아 최종 비디오 위치를 계산한다.
- 주어진 명령어에 따라 현재 위치를 10분 단위로 이동시키며, 오프닝 시간이면 오프닝 종료로 이동한다.
- 계산된 위치는 분 단위로 표현되며, 이를 시:분 형식으로 변환한다.
- 최종 결과를 문자열로 반환한다.
느낀점
- 어렵지는 않지만 자동으로 오프닝 건너 뛰는 부분에서 실수하면 틀릴 수도 있겠다.
'알고리즘' 카테고리의 다른 글
Softeer [Level 3] [한양대 HCPC 2023] Pipelined {언어 : JavaScript} (1) | 2024.11.01 |
---|---|
프로그래머스 [Lv. 2] [PCCP 기출문제] 2번 / 퍼즐 게임 챌린지 {언어 : Python} (0) | 2024.09.27 |
프로그래머스 [Lv. 3] 표 병합 {언어 : Python} (0) | 2024.08.06 |
프로그래머스 [Lv. 3] 순위 {언어 : Python} (0) | 2024.07.08 |
Softeer(소프티어) JavaScript 코딩 테스트 입력 방법 [INPUT] (1) | 2024.07.03 |