티스토리 뷰
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(" ")
.map((item) => +item); // .split()이 붙어있으면 오류가 납니다 틀렸다고 나와요
//console.log(input);
solution(input);
function solution(A) {
let x = 0;
let y = 0;
x = A[2] - A[0]; // (w,h)에서 x ,y 의 경계선까지의 최솟값
y = A[3] - A[1]; // h -y
if (A[0] < x) {
// (0,0)에서 x,y의 경계선까지의 최솟값
x = A[0];
}
if (A[1] < y) {
y = A[1];
}
console.log(x < y ? x : y);
}
'알고리즘 > 백준 문제풀이' 카테고리의 다른 글
백준 nodejs 4153번: 직각삼각형 (0) | 2021.10.01 |
---|---|
백준 nodejs 3009번: 네 번째 점 (0) | 2021.10.01 |
백준 nodejs 9020번: 골드바흐의 추측 (0) | 2021.09.29 |
백준 nodejs 4948번: 베르트랑 공준 (0) | 2021.09.28 |
백준 nodejs 11653번: 소인수분해 (0) | 2021.09.28 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 북클럽
- nodejs
- 프론트앤드
- 노개북
- 프리온보딩
- error
- javascript
- NextRequest
- 우아한테크코스
- C언어
- CLASS
- electron
- WSL2
- import/order
- 노마드코더
- NextApiRequest
- 아차산
- 초보
- jest
- 원티드
- nextjs
- React
- 스토리 북
- createPortal
- TopLayer
- Storybook
- 윤성우 열혈C프로그래밍
- env
- 위코드
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함