Notice
Recent Posts
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- JS typeof연산자
- JS preventDefault
- JS value속성
- git 협업셋팅
- JS 연산
- CSS기초
- JS 함수
- JS null undefined
- HTML기초
- JS classList
- JS 삼항연산
- JS appendChild
- CSS속성정리
- JS prompt
- JS 화살표함수
- JS clearInterval
- JS 스코프
- js 변수
- JS 기초
- JS 데이터타입
- JS setInterval
- JS 타이머기능
- JS redirection
- JS setTimeout
- JS append
- JS localStorage
- JS form
- JS 숫자
- JS form action
- JS 형변환
Archives
공부기록용
프로그래머스(LV 1. 부족한 금액 계산하기) 본문
LV 1. 부족한 금액 계산하기
https://school.programmers.co.kr/learn/courses/30/lessons/82612
문제 설명
새로 생긴 놀이기구는 인기가 매우 많아 줄이 끊이질 않습니다. 이 놀이기구의 원래 이용료는 price원 인데, 놀이기구를 N 번 째 이용한다면 원래 이용료의 N배를 받기로 하였습니다. 즉, 처음 이용료가 100이었다면 2번째에는 200, 3번째에는 300으로 요금이 인상됩니다. 놀이기구를 count번 타게 되면 현재 자신이 가지고 있는 금액에서 얼마가 모자라는지를 return 하도록 solution 함수를 완성하세요. 단, 금액이 부족하지 않으면 0을 return 하세요.
제한사항
입출력 예
- 놀이기구의 이용료 price : 1 ≤ price ≤ 2,500, price는 자연수
- 처음 가지고 있던 금액 money : 1 ≤ money ≤ 1,000,000,000, money는 자연수
- 놀이기구의 이용 횟수 count : 1 ≤ count ≤ 2,500, count는 자연수
입출력 예
<해결>
function solution(price, money, count) { var answer = 0; for(let i = 0; i <= count; i++){ answer += price *i } if (answer < money) return 0; return answer - money; } console.log(solution(3, 20, 4))
function solution(price, money, count) {
let answer = 0;
for (let i = 1; i <= count; i++) {
answer += price * i;
}
return answer > money ? answer - money : 0;
}
function solution(price, money, count) {
var gigu = new Array(count).fill(undefined).map((e,i)=> (i+1)*price).reduce((acc,cur)=> acc+cur)
return gigu >= money ? gigu - money : 0
//가우스공식
function solution(price, money, count) {
const result = price * count * (count + 1) / 2 - money; // 가우스공식
return result > 0 ? result : 0;
}
'✍️문제풀기✍️ > JS_Programmers school' 카테고리의 다른 글
프로그래머스(LV 1. 직사각형 별찍기) (0) | 2023.06.19 |
---|---|
프로그래머스(LV 1. 나누어 떨어지는 숫자 배열) (0) | 2023.06.17 |
프로그래머스(LV 1. x만큼 간격이 있는 n개의 숫자) (0) | 2023.06.17 |
프로그래머스(LV 1. 없는 숫자 더하기) (0) | 2023.06.16 |
프로그래머스(LV 1. 문자열을 정수로 바꾸기) (0) | 2023.06.16 |
Comments