문제 링크
https://programmers.co.kr/learn/courses/30/lessons/82612
C++ 풀이
using namespace std;
long long cal(int n) {
if (n <= 1)
return 1;
return n + cal(n - 1);
}
long long solution(int price, int money, int count)
{
if ((cal(count) * price) < money)
return 0;
return (cal(count) * price) - money;
}
반응형
'알고리즘 · 코딩' 카테고리의 다른 글
[SWEA 1966] 숫자를 정렬하자 (0) | 2021.09.16 |
---|---|
[SWEA 1946] 간단한 압축 풀기 (0) | 2021.09.11 |
[프로그래머스] 표 편집 (0) | 2021.08.25 |
[프로그래머스] 2개 이하로 다른 비트 (0) | 2021.08.17 |
[프로그래머스] 숫자 문자열과 영단어 (0) | 2021.08.12 |