티스토리 뷰
https://www.acmicpc.net/problem/9471
https://wtg-study.tistory.com/51
const fs = require('fs');
const [n, ...arr] = fs.readFileSync("./dev/stdin").toString().trim().split("\n");
const N = +n;
const test = arr.map(v=>v.split(' ').map(Number))
const answer = [];
test.forEach(v=>{
const [index,value] = v;
const k = pisano(value)
answer.push([index,k].join(' '))
})
console.log(answer.join('\n'))
function pisano(m){
let cnt = 0;
let x = 1;
let y = 1;
while(true){
let z = (x+y)%m;
x = y;
y = z;
cnt++;
if(x==1 && y==1)break;
}
return cnt;
}
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js)백준 10830번: 행렬 제곱 (0) | 2021.12.31 |
---|---|
Node.js)백준 2748번: 피보나치 수 2 (0) | 2021.12.31 |
Node.js)백준 2747번: 피보나치 수 (0) | 2021.12.30 |
Node.js)백준 1629번: 곱셈 (0) | 2021.12.30 |
Node.js)백준 11576번: Base Conversion (0) | 2021.12.30 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 롱베케이션
- 최소공통조상
- MOD
- node.js
- 면접질문
- 서버개발
- 로드나인
- MySQL
- 투포인터
- create databases;
- create db
- 서버점검
- 은둔청년체험
- 그래프
- 투포인터 연습
- 동적프로그래밍
- BFS
- 다이나밍프로그래밍
- 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 |
글 보관함