티스토리 뷰
https://www.acmicpc.net/problem/11047
const fs = require('fs');
const [x, ...arr] = fs.readFileSync("./dev/stdin").toString().trim().split('\n');
const [_, target] = x.split(' ');
let goal = +target;
const coin = arr.map(v => +v).sort((a, b) => b - a)
let now = 0;
let answer = 0;
while (goal != 0) {
let possible = Math.floor(goal / coin[now]);
if (possible > 0) {
answer += possible;
goal %= coin[now]
}
now++;
}
console.log(answer)
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 1541번 : 잃어버린 괄호 (0) | 2021.09.12 |
---|---|
Node.js) 백준 1931번 : 회의실 배정 (0) | 2021.09.11 |
C++) 백준 11389번 : ATM (0) | 2021.09.11 |
Node.js) 백준 2565번 : 전깃줄 ★ (0) | 2021.09.10 |
Node.js) 백준 11053번 : 가장 긴 증가하는 부분 수열 ★ (0) | 2021.09.10 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 서버개발
- create db
- create databases;
- 면접비
- 면접질문
- BFS
- 로드나인
- node.js
- 은둔청년체험
- 다이나밍프로그래밍
- MOD
- 투포인터
- 투포인터 연습
- DB 생성
- 동적프로그래밍
- 최소공통조상
- 그래프
- 롱베케이션
- 서버점검
- 다이나믹프로그래밍
- MySQL
- 개발자면접
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함