반응형
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
- 프로그래머스
- Node.js
- 수학
- 프로그래머스 레벨 2
- 문자열
- Algorithm
- 알고리즘
- 그래프
- HTTP
- 레벨 1
- 타입스크립트
- dp
- javascript
- BFS
- ip
- dfs
- 소켓
- 가천대
- 백준
- TCP
- socket
- Crawling
- 쉬운 문제
- HTTP 완벽 가이드
- 크롤링
- 자바스크립트
- 타입 챌린지
- Nestjs
- typescript
- type challenge
Archives
- Today
- Total
kakasoo
[node.js] GCD 합 ( 백준 9613번 ) 본문
반응형
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
const input = [];
let count = 0;
rl.on("line", (line) => {
if (!count) {
count = Number(line);
} else {
input.push(line);
main(line);
if (input.length === count) {
rl.close();
}
}
}).on("close", () => {
process.exit();
});
const gcd = (A, B) => {
if (B === 0) {
return A;
} else {
return gcd(B, A % B);
}
};
/**
*
* @param {string} line
*/
const main = (line) => {
let sum = 0;
const numbers = line.split(" ").map(Number);
for (let i = 1; i < numbers.length; i++) {
for (let j = i + 1; j < numbers.length; j++) {
const gcdValue = gcd(numbers[i], numbers[j]);
sum += gcdValue;
}
}
console.log(sum);
};
반응형
'프로그래밍 > 알고리즘 풀이' 카테고리의 다른 글
[node.js] 진법 변환2 ( 백준 11005번 ) (0) | 2021.04.05 |
---|---|
[node.js] 진법 변환 ( 백준 2745번 ) (0) | 2021.04.05 |
[node.js] 최소공배수 ( 백준 1934번 ) (0) | 2021.04.05 |
[node.js] 최대공약수와 최소공배수 ( 백준 2609번 ) (0) | 2021.04.05 |
[node.js] 나누기 ( 백준 10430번 ) (0) | 2021.04.05 |