반응형
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 |
Tags
- 프로그래머스 레벨 2
- 수학
- ip
- HTTP
- javascript
- 프로그래머스
- 가천대
- 타입스크립트
- Crawling
- 그래프
- HTTP 완벽 가이드
- typescript
- 문자열
- socket
- Nestjs
- 타입 챌린지
- BFS
- Node.js
- 자바스크립트
- 크롤링
- dfs
- 쉬운 문제
- dp
- type challenge
- 레벨 1
- 소켓
- Algorithm
- TCP
- 알고리즘
- 백준
Archives
- Today
- Total
kakasoo
[node.js] 숫자 ( 백준 10093번 ) 본문
반응형
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
rl.on("line", (line) => {
main(line);
process.exit();
});
/**
*
* @param {string} line
*/
const main = (line) => {
let [A, B] = line.split(" ").map(BigInt);
if (A > B) {
let temp = A;
A = B;
B = temp;
}
if (A === B || A + BigInt(1) === B) {
console.log(0);
return;
}
let answer = "";
for (let i = 1; i < B - A - BigInt(1); i++) {
answer += `${A + BigInt(i)} `;
}
answer += `${B - BigInt(1)}`;
console.log(String(B - A - BigInt(1)));
console.log(answer);
};
이게 정답률이 23%일 이유가 없는데... 코드가 더럽긴 하지만 간단하게 풀 수 있는 문제다.
BigInt는 Cpp에서의 long long int와 같을 것이다.
아마 다른 사람들이 틀린 이유는, 숫자가 같은 경우 또는 숫자가 1 차이가 날 경우의 예외를 생각 못했거나,
아니면 A가 B보다 클 경우를 생각 못했기 때문일 것이다.
이 문제에서는 B가 A보다 크다는 전제가 없다.
반응형
'프로그래밍 > 알고리즘 풀이' 카테고리의 다른 글
[node.js] 행복한지 슬픈지 ( 백준 10769번 ) (0) | 2021.04.11 |
---|---|
[node.js] !밀비 급일 ( 백준 11365번 ) (0) | 2021.04.11 |
[node.js] 버블 소트 ( 백준 1377번 ) (0) | 2021.04.11 |
[node.js] 미로 탐색 ( 백준 2178번 ) (0) | 2021.04.10 |
[node.js] 섬의 개수 ( 백준 4963번 ) (0) | 2021.04.10 |