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
- 자료구조 목차
- 영상 프레임 추출
- 강의실2
- 걷는건귀찮아
- AI Hub
- 알고리즘 목차
- 수 만들기
- 2020 KAKAO BLIND RECRUITMENT
- 문자열 압축
- 그리디알고리즘
- mysqld.sock
- 탄막 이동
- 3344
- SWEA
- 윈도우
- c#
- 3273
- 토글 그룹
- 백준
- 탄막 스킬 범위
- 회의실 배정
- 단어 수학
- 알고리즘
- 마우스 따라다니기
- 18249
- 우분투
- 원형
- 탄막
- 유니티
- MySQL
Archives
- Today
- Total
와이유스토리
[문자열] 프로그래머스 주차 요금 Python 본문
def solution(fees, records):
answer = []
cars = [] # 차량번호
costs = {} # 요금
times = {} # 입차시간
for r in records:
if r[11:13] == "IN":
if r[6:10] not in cars:
cars.append(r[6:10])
times[r[6:10]] = int(r[0:2])*60+int(r[3:5])
else:
if r[6:10] not in costs:
costs[r[6:10]] = 0
extra = int(r[0:2])*60+int(r[3:5]) - times[r[6:10]]
if extra > 0:
costs[r[6:10]] += extra
times[r[6:10]] = -1
cars.sort()
for c in cars:
if c not in costs: # 한 번도 출차하지 않은 차
costs[c] = 0
if times[c] != -1: # 마지막으로 출차하지 않은 차
costs[c] += (23*60+59 - times[c])
if costs[c] > fees[0]:
extra = (int)((costs[c] - fees[0]) / fees[2])
if ((costs[c] - fees[0]) % fees[2]) != 0:
extra += 1
costs[c] = fees[1] + extra * fees[3]
else: costs[c] = fees[1]
answer.append(costs[c])
return answer
'코딩테스트 > 문자열' 카테고리의 다른 글
[문자열] 프로그래머스 개인정보 수집 유효기간 C++, Python (0) | 2023.01.18 |
---|---|
[문자열] 프로그래머스 시저 암호 Java (0) | 2022.12.16 |
[문자열] 프로그래머스 후보키 Python (0) | 2022.03.03 |
[문자열, 이진탐색] 프로그래머스 순위 검색 Python (0) | 2022.02.04 |
[딕셔너리] 프로그래머스 오픈채팅방 Python (0) | 2022.02.04 |
Comments