티스토리 뷰
https://www.acmicpc.net/problem/1788
const input = +require('fs').readFileSync('./dev/stdin').toString();
const answer = [];
if (input == 0) {
answer.push(0);
} else if (input > 0) {
answer.push(1);
} else {
if (input % 2 == 0) {
answer.push(-1);
} else {
answer.push(1);
}
}
let dp = [];
dp[0] = 0;
dp[1] = 1;
const absInput = Math.abs(input);
for (let i = 2; i <= absInput; i++) {
dp[i] = (dp[i - 1] + dp[i - 2]) % 1000000000;
}
answer.push(dp[absInput]);
console.log(answer.join('\n'));
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 9658번: 돌 게임 2 (0) | 2023.08.18 |
---|---|
Node.js) 백준 8394번: 악수 (0) | 2023.08.17 |
Node.js) 백준 9657번: 돌 게임3 (0) | 2023.08.17 |
Node.js) 백준 11721번: 열 개씩 끊어 출력하기 (0) | 2023.08.16 |
Node.js) 백준 28683번: 피타! 피타! 피타츄! (0) | 2023.08.16 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- DB 생성
- 그래프
- create db
- 다이나밍프로그래밍
- 은둔청년체험
- 로드나인
- 동적프로그래밍
- MOD
- 개발자면접
- node.js
- 다이나믹프로그래밍
- 면접비
- 투포인터
- BFS
- 서버점검
- 면접질문
- 최소공통조상
- 투포인터 연습
- create databases;
- 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 |
글 보관함