1011. Fly me to the Alpha Centauri - node.js / javascript
문제
내 코드
let fs = require('fs');
let input = fs.readFileSync('/dev/stdin').toString().split('\n');
let count = Number(input[0]);
let x;
let y;
let a;
let b;
let answer = [];
for (let i = 1; i <= count; i++) {
let splitedInput = input[i].split(" ");
x = Number(splitedInput[0]);
y = Number(splitedInput[1]);
let distance = y - x;
if (Math.sqrt(distance) % 1 === 0) {
answer.push(2 * Math.sqrt(distance) - 1);
} else {
a = Math.pow(Math.ceil(Math.sqrt(y - x)), 2);
b = Math.pow(Math.ceil(Math.sqrt(y - x)) - 1, 2) + 1;
if ((a + b) / 2 <= distance) {
answer.push(2 * Math.ceil(Math.sqrt(y - x)) - 1);
} else {
answer.push(2 * Math.ceil(Math.sqrt(distance)) - 2);
}
}
console.log(answer[answer.length - 1]);
}
깃허브 링크
let fs = require('fs');
let input = fs.readFileSync('/dev/stdin').toString().split('\n');
let count = Number(input[0]);
let x;
let y;
let a;
let b;
let answer = [];
for (let i = 1; i <= count; i++) {
let splitedInput = input[i].split(" ");
x = Number(splitedInput[0]);
y = Number(splitedInput[1]);
let distance = y - x;
if (Math.sqrt(distance) % 1 === 0) {
answer.push(2 * Math.sqrt(distance) - 1);
} else {
a = Math.pow(Math.ceil(Math.sqrt(y - x)), 2);
b = Math.pow(Math.ceil(Math.sqrt(y - x)) - 1, 2) + 1;
if ((a + b) / 2 <= distance) {
answer.push(2 * Math.ceil(Math.sqrt(y - x)) - 1);
} else {
answer.push(2 * Math.ceil(Math.sqrt(distance)) - 2);
}
}
console.log(answer[answer.length - 1]);
}
Author And Source
이 문제에 관하여(1011. Fly me to the Alpha Centauri - node.js / javascript), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@arthur/1011.-Fly-me-to-the-Alpha-Centauri-node.js-javascript저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)