https://school.programmers.co.kr/learn/courses/30/lessons/135808
1. 내가 작성한 코드
while len(score) >= m:
으로 반복문을 돌렸더니 계속 시간초과가 발생했다.
그래서 for 문으로 수정해주었다.
def solution(k, m, score):
result = 0
score = sorted(score, reverse=True)
for i in range(0, len(score), m):
tmp = score[i:i+m]
if len(tmp) == m:
result += min(tmp) *m
return result
1. range(start, end, step) 좀 써먹자
2. 인덱스에서 list 길이 이상의 위치를 인덱스로 가르키면 오류가 발생하지만, 슬라이싱은 존재하는 원소까지만 넣어준다.
score = [1,2,3,1,2,3,1]
m = 4
for i in range(0, len(score), m):
tmp = score[i:i+m]
print(tmp)
#[1,2,3,1]
#[2,3,1]
'🔅코딩테스트 공부🔅 > ❗프로그래머스(Lv.1)' 카테고리의 다른 글
[프로그래머스] Level1 성격 유형 검사하기(python) (0) | 2023.02.11 |
---|---|
[프로그래머스] Level1 둘만의 암호(python) (0) | 2023.02.10 |
[프로그래머스] Level1 옹알이(2) (python) (0) | 2023.02.09 |
[프로그래머스] Level1 기사단원의 무기(with python) (0) | 2023.02.08 |
[프로그래머스] Level1 비밀지도(with python) (0) | 2023.02.07 |
댓글