Recent Posts
Notice
No Rules Rules
피보나치 수 (feat. 백준, 2747번) 본문
728x90
반응형
피보나치 수
https://www.acmicpc.net/problem/2747
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register long long N, arr[46];
cin >> N;
arr[0] = 0, arr[1] = 1;
for (register int i = 2; i <= N; ++i)
arr[i] = arr[i - 1] + arr[i - 2];
cout << arr[N] << endl;
return 0;
}
// *&)*@*
반응형
반복문을 이용하여 입력으로 주어진 N에 해당되는 피보나치 수를 출력하는 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
게리맨더링 (feat. 백준, 17471번) (0) | 2022.10.11 |
---|---|
여행 가자 (feat. 백준, 1976번) (0) | 2022.10.07 |
마인크래프트 (feat. 백준, 18111번) (0) | 2022.10.07 |
암호 만들기 (feat. 백준, 1759번) (0) | 2022.10.07 |
수들의 합 (feat. 백준, 1789번) (0) | 2022.10.06 |
Comments