Notice
Recent Posts
Recent Comments
Link
bdfgdfg
[레벨 1] 부족한 금액 계산하기 본문
반응형
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
long long solution(int price, int money, int count) {
long long answer = 0;
for(int i = 1; i <= count; ++i)
{
answer += (i * price);
}
answer -= money;
if(answer <= 0)
answer = 0;
return answer;
}
반응형
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[레벨 2] 행렬의 곱셈 (0) | 2021.09.17 |
---|---|
[레벨 1] 비밀지도 - 비트연산 (0) | 2021.09.12 |
[레벨 1] 2016년 (0) | 2021.09.08 |
[레벨1] 내적 (0) | 2021.09.08 |
[레벨1] 음양 더하기 (0) | 2021.09.08 |
Comments