Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 개발
- 알고리즘
- DART
- django
- DFS와BFS
- Vue
- 동적계획법과최단거리역추적
- 파이썬
- cos pro
- cos
- DFS
- cos pro 1급
- vuejs
- AndroidStudio
- C++
- 코드품앗이
- codingtest
- Algorithm
- android
- 코테
- BAEKJOON
- 분할정복
- 동적계획법
- 백준
- 코딩테스트
- Flutter
- Python
- 안드로이드스튜디오
- issue
- 안드로이드
Archives
- Today
- Total
Development Artist
[COS Pro 1급, Python] 2차 2번 : 지하철 기다리기 본문
728x90
반응형
문제 유형
빈칸
난이도
easy
Note
Nothing
Code
# -*- coding: utf-8 -*-
# UTF-8 encoding when using korean
# 2차 2번
def func_a(times):
hour = int(times[:2])
minute = int(times[3:])
return hour*60 + minute
def solution(subway_times, current_time):
current_minute = func_a(current_time)
INF = 1000000000
answer = INF
for s in subway_times:
subway_minute = func_a(s)
if subway_minute>=current_minute:
answer = subway_minute - current_minute
break
if answer == INF:
return -1
return answer
subway_times1 = ["05:31", "11:59", "13:30", "23:32"]
current_time1 = "12:00"
ret1 = solution(subway_times1, current_time1)
print("solution 함수의 반환 값은", ret1, "입니다.")
subway_times2 = ["14:31", "15:31"]
current_time2 = "15:31"
ret2 = solution(subway_times2, current_time2)
print("solution 함수의 반환 값은", ret2, "입니다.")
※ 가끔 코드 중 print(~)가 있습니다. 정리 못한 점 죄송합니다.
728x90
반응형
'Algorithm > COS' 카테고리의 다른 글
[COS Pro 1급, Python] 2차 4번 : 합이 k 배가 되는 수 (0) | 2022.02.25 |
---|---|
[COS Pro 1급, Python] 2차 3번 : 경품 당첨자를 구해주세요 (0) | 2022.02.25 |
[COS Pro 1급, Python] 2차 1번 : 도서 대여점 운영 (0) | 2022.02.25 |
[COS Pro 1급, Python] 1차 10번 : 주식으로 최대 수익을 내세요 (0) | 2022.02.24 |
[COS Pro 1급, Python] 1차 9번 : 계단 게임 (0) | 2022.02.24 |
Comments