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
- emtion app router
- next13 emotion
- 프로그래머스 거리두기 확인하기
- js 스코프
- 구름톤
- 백준 1339번 자바스크립트
- 백준 2108 nodejs
- 리액트쿼리 suspense
- 스코프
- 구름톤 챌린지 회고
- 백준 1339번 nodejs
- suspense 비동기
- 구름톤 챌린지
- suspense react-query
- js 거리두기 확인하기
- 자바스크립트 스코프
- suspense 동작원리
- js
- TypeError: createContext only works in Client Components. Add the "use client" directive at the top of the file to use it. Read more:
- suspense 병목현상
- 백준 1339번 js
- 백준 2108 자바스크립트
- app router emotion
- 사용성 개선
- emotion RSC
- 옵셔널체이닝
- 프로그래머스 문자열 압축
- js 문자열 압축
- 자바스크립트 문자열 압축
- 카카오 코테
Archives
- Today
- Total
Lennon FE
[백준 14490번] 백대열 - 자바스크립트(nodejs) 본문
728x90
반응형
https://www.acmicpc.net/problem/14490
const readline = require('readline');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
let input;
rl.on('line', function (line) {
input = line.split(':').map(Number);
rl.close();
}).on('close', function () {
console.log(solution(input));
});
function solution(num) {
let cnt = 2;
while (true) {
if (cnt > Math.min(...num)) {
break;
}
if (num[0] % cnt === 0 && num[1] % cnt === 0) {
num[0] /= cnt;
num[1] /= cnt;
} else {
cnt++;
}
}
return `${num[0]}:${num[1]}`;
}
처음엔 값에 대해 2로 나누고 안되면 1씩 늘려서 나누다가, 값의 최소값보다 나누는 값이 커지면 끝내고 리턴하면 끝!
728x90
반응형
'🔥 Algorithm > Baekjoon' 카테고리의 다른 글
[백준 14503번] 로봇청소기 - 자바스크립트(nodejs) (0) | 2022.04.30 |
---|---|
[백준 9935번] 문자열 폭발 - 자바스크립트(nodejs) (0) | 2022.04.06 |
[백준 10610번] 30 - 자바스크립트(nodejs) (0) | 2022.04.05 |
[백준 11057번] 오르막 수 - 자바스크립트(nodejs) (0) | 2022.03.18 |
[백준 1309번] 동물원 - 자바스크립트(nodejs) (0) | 2022.03.18 |
Comments