티스토리 뷰
https://www.acmicpc.net/problem/3986
const fs = require('fs');
const [n, ...input] = fs.readFileSync("./dev/stdin").toString().trim().split('\n');
let answer = 0;
const words = input.map(v => v.trim().split(''));
for (let i = 0; i < n; i++) {
const word = words[i];
const temp = [];
word.forEach(c => {
if (temp.length == 0) {
temp.push(c);
} else if (temp[temp.length - 1] == c) {
temp.pop();
} else {
temp.push(c);
}
})
if (temp.length == 0) {
answer++;
continue;
} else {
const L = temp.length
if (L % 2 != 0) {
continue;
} else {
let flag = true;
for (let i = 0; i < L / 2; i++) {
if (temp.shift() != temp.pop()) {
flag = false;
break;
}
}
if (flag) {
answer++;
}
}
}
}
console.log(answer)
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 2910번 : 빈도 정렬 (0) | 2022.03.09 |
---|---|
Node.js) 백준 2828번 : 사과 담기 게임 (0) | 2022.03.09 |
Node.js) 백준 1940번 : 주몽 (0) | 2022.03.08 |
Node.js) 백준 1213번 : 팰린드롬 만들기 (0) | 2022.03.07 |
Node.js) 백준 1620번 : 나는야 포켓몬 마스터 이다솜 (0) | 2022.03.07 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 최소공통조상
- 롱베케이션
- 투포인터 연습
- 은둔청년체험
- node.js
- 투포인터
- create db
- BFS
- 로드나인
- create databases;
- 서버개발
- 그래프
- 다이나믹프로그래밍
- 개발자면접
- DB 생성
- 서버점검
- 다이나밍프로그래밍
- MOD
- 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 |
글 보관함