https://programmers.co.kr/learn/courses/30/lessons/82612
등차수열의 합을 공식으로 쓰면 됨
def solution(price, money, count):
return max(0,price*(count+1)*count//2-money)
'Programming > Programmers' 카테고리의 다른 글
[프로그래머스] 짝지어 제거하기(Python) (0) | 2021.10.23 |
---|---|
[프로그래머스] 오픈채팅방(Python) (0) | 2021.10.22 |
[프로그래머스] 나머지가 1이 되는 수 찾기(Python) (0) | 2021.10.21 |
[프로그래머스] 여행 경로(Python) (0) | 2021.10.21 |
[프로그래머스] 단어 변환(Python) (0) | 2021.10.21 |
댓글