티스토리 뷰

알고리즘/백준 문제풀이

백준 nodejs 4153번: 직각삼각형

YG - 96년생 , 강아지 있음, 개발자 희망 2021. 10. 1. 08:00

const fs = require("fs");

const filePath = process.platform === "linux" ? "./input.txt" : "/dev/stdin"; //제 개발환경은 리눅스이기에 input.txt를 앞에 두었습니다.

// const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; // 실제 백준사이트에 제출할 때는 위에 filePath를 삭제하고 이 부분을 입력하면 됩니다.

let input = fs.readFileSync(filePath).toString().split("\n");

//console.log(input.length);

solution(input);

function solution(A) {
  for (let i = 0; i < A.length; i++) {
    A[i] = A[i].split(" ").map((item) => +item);

    A[i] = A[i].sort(function (f, s) {
      // 각 배열을 올림차순으로 정렬해준다.
      return f - s;
    });

    if (A[i][2] === 0) {
      // 입력값이 0일 때 멈춤
      break;
    }
    if (A[i][2] ** 2 == A[i][1] ** 2 + A[i][0] ** 2) {
      // 가장 긴 변의 제곱과  각 두변의 제곱의 합이 같으면 직각삼각형이다.
      console.log("right");
    } else {
      console.log("wrong");
    }
    //console.log(A[i]);
  }
}

 

댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/12   »
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
글 보관함