JS
-
문제 번호 : 1013 번 문제 바로가기 ☞ https://www.acmicpc.net/problem/1013 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; let input = fs.readFileSync(filePath).toString().trim().split('\n'); let N = input[0]; function isMatch(str){ const regexp = /^(01|(100+1+))+$/g; let text = str.match(regexp)?.reduce((acc, cur) => acc+cur,""); if (text === undefined..
[BaekJoon] 1013 번 Contact 문제 - (nodejs)문제 번호 : 1013 번 문제 바로가기 ☞ https://www.acmicpc.net/problem/1013 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; let input = fs.readFileSync(filePath).toString().trim().split('\n'); let N = input[0]; function isMatch(str){ const regexp = /^(01|(100+1+))+$/g; let text = str.match(regexp)?.reduce((acc, cur) => acc+cur,""); if (text === undefined..
2022.01.13 -
문제 번호 : 14225 번 문제 바로가기 ☞ https://www.acmicpc.net/problem/14225 const fs = require('fs'); const { deflateSync } = require('zlib'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; let input = fs.readFileSync(filePath).toString().trim().split('\n'); let tables = new Array(2000001).fill(false); const N = Number(input.shift()); const S = input[0].split(' ').map(Number);..
[BaekJoon] 41225 번 부분수열의 합 문제 - (nodejs)문제 번호 : 14225 번 문제 바로가기 ☞ https://www.acmicpc.net/problem/14225 const fs = require('fs'); const { deflateSync } = require('zlib'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; let input = fs.readFileSync(filePath).toString().trim().split('\n'); let tables = new Array(2000001).fill(false); const N = Number(input.shift()); const S = input[0].split(' ').map(Number);..
2022.01.11 -
문제 번호 : 7795 번 문제 바로가기 ☞ https://www.acmicpc.net/problem/7795 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; let input = fs.readFileSync(filePath).toString().trim().split('\r\n'); const T = Number(input.shift()); const binary_search = (arr, data) => { let low = 0; let high = arr.length-1; let result = -1; while (low Number(el)); input.shif..
[BaekJoon] X 번 X 문제 - (nodejs)문제 번호 : 7795 번 문제 바로가기 ☞ https://www.acmicpc.net/problem/7795 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; let input = fs.readFileSync(filePath).toString().trim().split('\r\n'); const T = Number(input.shift()); const binary_search = (arr, data) => { let low = 0; let high = arr.length-1; let result = -1; while (low Number(el)); input.shif..
2022.01.11 -
문제 번호 : 2696번 문제 바로가기 ☞ https://www.acmicpc.net/problem/2696 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; let input = fs.readFileSync(filePath).toString().trim().split('\n'); const N = Number(input.shift()); class Heap{ constructor(){ this.node = []; } insert(data, status){ this.node.push(data); let child = this.node.length-1; if(status ..
[BaekJoon] 2696 번 중앙값 구하기 문제 - (nodejs)문제 번호 : 2696번 문제 바로가기 ☞ https://www.acmicpc.net/problem/2696 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; let input = fs.readFileSync(filePath).toString().trim().split('\n'); const N = Number(input.shift()); class Heap{ constructor(){ this.node = []; } insert(data, status){ this.node.push(data); let child = this.node.length-1; if(status ..
2022.01.10 -
문제 번호 : 1655번 문제 바로가기 ☞ https://www.acmicpc.net/problem/1655 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; let input = fs.readFileSync(filePath).toString().trim(); let [n, ...arr] = input.split('\n').map((el) => Number(el)); class Heap{ constructor(){ this.node = []; } insert(data, status){ this.node.push(data); let child = this.node.leng..
[BaekJoon] 1655번 가운데를 말해요 문제 - (nodejs)문제 번호 : 1655번 문제 바로가기 ☞ https://www.acmicpc.net/problem/1655 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; let input = fs.readFileSync(filePath).toString().trim(); let [n, ...arr] = input.split('\n').map((el) => Number(el)); class Heap{ constructor(){ this.node = []; } insert(data, status){ this.node.push(data); let child = this.node.leng..
2022.01.10 -
문제 번호 : 4889번 문제 바로가기 ☞ https://www.acmicpc.net/problem/4889 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; let input = fs.readFileSync(filePath).toString().trim().split('\n'); for(let i in input){ let temp = input[i].split(''); let arr = []; let cnt = 0; if(temp[0] === '-') break; for(let j in temp){ if(temp[j] === '{'){ arr.push(temp[j])..
[BaekJoon] 4889 번 안정적인 문자열 문제 - (nodejs)문제 번호 : 4889번 문제 바로가기 ☞ https://www.acmicpc.net/problem/4889 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; let input = fs.readFileSync(filePath).toString().trim().split('\n'); for(let i in input){ let temp = input[i].split(''); let arr = []; let cnt = 0; if(temp[0] === '-') break; for(let j in temp){ if(temp[j] === '{'){ arr.push(temp[j])..
2022.01.07