문제 링크
풀이
const input = require("fs").readFileSync("/dev/stdin").toString().trim().split("\n");
const m = parseInt(input[0]);
const n = parseInt(input[1]);
const arr = [];
for (let i=Math.ceil(Math.sqrt(m)); i<= Math.floor(Math.sqrt(n)); i++) arr.push(i**2);
if (arr.length) {
console.log(arr.reduce((acc, i) => acc + i, 0));
console.log(arr[0]);
} else console.log(-1);
m과 n의 제곱근 사이에 있는 정수들의 제곱의 합과 그 최솟값을 출력하였다. arr의 요소가 하나도 없다면 완전제곱수가 없는 것이므로 -1을 출력한다.
'연습장 > 백준(BOJ) 문제풀이' 카테고리의 다른 글
[백준 10798] 세로읽기 with Node.js (0) | 2021.04.06 |
---|---|
[백준 11653] 소인수분해 with Python (0) | 2021.04.06 |
[백준 2167] 2차원 배열의 합 with Python (0) | 2021.04.05 |
[백준 10773] 제로 with Python (0) | 2021.04.05 |
[백준 1373] 2진수 8진수 with Node.js (0) | 2021.04.04 |