티스토리 뷰
https://www.acmicpc.net/problem/1940
const fs = require('fs');
const [_, target, input] = fs.readFileSync("./dev/stdin").toString().trim().split('\n');
const num = input.split(' ').map(Number).sort((a, b) => a - b);
let answer = 0;
let front = num.shift();
let back = num.pop();
while (num.length > 0) {
const result = front + back
if (result == target) {
answer++;
front = num.shift();
back = num.pop();
} else if (result < target) {
front = num.shift();
} else {
back = num.pop();
}
}
if (front && back && front + back == target) {
answer++;
}
console.log(answer)
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 2828번 : 사과 담기 게임 (0) | 2022.03.09 |
---|---|
Node.js) 백준 3986번 : 좋은 단어 (0) | 2022.03.08 |
Node.js) 백준 1213번 : 팰린드롬 만들기 (0) | 2022.03.07 |
Node.js) 백준 1620번 : 나는야 포켓몬 마스터 이다솜 (0) | 2022.03.07 |
Node.js) 백준 2559번 : 수열 (0) | 2022.03.07 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 은둔청년체험
- 투포인터 연습
- 로드나인
- MOD
- 서버개발
- 면접질문
- 동적프로그래밍
- MySQL
- 개발자면접
- 그래프
- DB 생성
- create databases;
- node.js
- 다이나밍프로그래밍
- BFS
- 롱베케이션
- 서버점검
- 투포인터
- create db
- 다이나믹프로그래밍
- 최소공통조상
- 면접비
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함