티스토리 뷰
https://www.acmicpc.net/problem/3273
const fs = require('fs');
const input = fs.readFileSync("./dev/stdin").toString().trim().split("\n");
const N = +input.shift()
const target = +input.pop();
const nums = input[0].split(' ').map((v, i) => +v).sort((a, b) => a - b)
const kill = nums.length;
let start = 0;
let end = kill - 1;
let answer = 0;
while (start != end) {
if (nums[start] + nums[end] == target) {
answer++;
start++;
} else if (nums[start] + nums[end] > target) {
end--;
} else {
start++;
}
}
console.log(answer)
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 1806번: 부분합 (0) | 2021.09.23 |
---|---|
Node.js) 백준 2470번: 두 용액 (0) | 2021.09.23 |
Node.js)백준 1158번: 요세푸스 문제 (0) | 2021.09.23 |
Node.js) 백준 15829번: Hashing (0) | 2021.09.23 |
Node.js) 백준 9020번: 골드바흐의 추측 (0) | 2021.09.21 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- create db
- 최소공통조상
- 다이나믹프로그래밍
- 투포인터 연습
- 서버개발
- 로드나인
- DB 생성
- MOD
- 동적프로그래밍
- 다이나밍프로그래밍
- 은둔청년체험
- create databases;
- 개발자면접
- 면접질문
- node.js
- 면접비
- 롱베케이션
- 그래프
- 투포인터
- BFS
- MySQL
- 서버점검
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함