Skip to content

Commit 301dffc

Browse files
committed
[level 1] Title: 완주하지 못한 선수, Time: 102.01 ms, Memory: 57.2 MB -BaekjoonHub
1 parent a95bb06 commit 301dffc

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

프로그래머스/1/42576. 완주하지 못한 선수/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
### 성능 요약
66

7-
메모리: 33 MB, 시간: 51.78 ms
7+
메모리: 57.2 MB, 시간: 102.01 ms
88

99
### 구분
1010

@@ -16,7 +16,7 @@
1616

1717
### 제출 일자
1818

19-
2025년 04월 07일 14:39:45
19+
2025년 04월 07일 14:44:37
2020

2121
### 문제 설명
2222

프로그래머스/1/42576. 완주하지 못한 선수/완주하지 못한 선수.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@ def solution(participant, completion):
55
p[i] = 1
66
else:
77
p[i] += 1
8+
c = {}
89
for i in completion:
9-
p[i] -= 1
10-
if p[i] == 0:
11-
del p[i]
12-
for i in p.keys():
10+
if i not in c:
11+
c[i] = 1
12+
else:
13+
c[i] += 1
14+
for i in dict(set(p.items()) - set(c.items())).keys():
1315
return i

0 commit comments

Comments
 (0)