반응형
Notice
Recent Posts
Recent Comments
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
- 크롤링
- 타입스크립트
- 가천대
- 소켓
- 수학
- BFS
- Nestjs
- 백준
- ip
- typescript
- socket
- Algorithm
- 타입 챌린지
- 자바스크립트
- 쉬운 문제
- Node.js
- dp
- 프로그래머스
- TCP
- 그래프
- 문자열
- HTTP
- dfs
- Crawling
- 알고리즘
- HTTP 완벽 가이드
- 레벨 1
- type challenge
- 프로그래머스 레벨 2
- javascript
Archives
- Today
- Total
kakasoo
[node.js] 진법 변환 ( 백준 2745번 ) 본문
반응형
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
rl.on("line", (line) => {
main(line);
rl.close();
}).on("close", () => {
process.exit();
});
/**
*
* @param {string} line
*/
const main = (line) => {
const [N, B] = line.split(" ");
const length = N.length;
const numbers = N.split("").map((el, i) => {
return {
value: el,
square: length - i - 1,
};
});
let sum = 0;
numbers.forEach((el, i) => {
if (isNaN(el.value)) {
const cur = el.value.charCodeAt() - 65 + 10;
const square = cur * (B ** el.square - 1);
sum += cur + square;
} else {
const cur = Number(el.value);
const square = cur * (B ** el.square - 1);
sum += cur + square;
}
});
console.log(sum);
};
일부러 내가 만든 객체를 출력했다. 일단 객체를 숫자와 (1~10, A ~ 35) 지수 ( === sqaure )로 만들어주었다.
이후 다시 forEach문을 돌며 그 값들을 해석해주게 하였다.
내부에서는 1~10인 경우와 A~Z인 경우를 구분해두었다. 진법 변환 자체는 그냥 어디서나 볼 수 있는 간단한 수식이다.
자바스크립트 코드라서 오히려 쉽게 풀지 않았나 싶다. ( 메모리는 최악이겠지만. )
반응형
'프로그래밍 > 알고리즘 풀이' 카테고리의 다른 글
[node.js] 2진수 8진수 ( 백준 1373번 ) (0) | 2021.04.05 |
---|---|
[node.js] 진법 변환2 ( 백준 11005번 ) (0) | 2021.04.05 |
[node.js] GCD 합 ( 백준 9613번 ) (0) | 2021.04.05 |
[node.js] 최소공배수 ( 백준 1934번 ) (0) | 2021.04.05 |
[node.js] 최대공약수와 최소공배수 ( 백준 2609번 ) (0) | 2021.04.05 |