BOJ 2748 : 피보나치 수 2 - C++
피보나치 수 2
코드
#include <string>
#include <vector>
#include <iostream>
using namespace std;
unsigned long long d[100];
int N;
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
d[0] = 0;
d[1] = 1;
cin >> N;
for(int i=2;i<=N;i++)
d[i] = d[i-2] + d[i-1];
cout << d[N];
return 0;
}
int
-> 21억 --> 1억대 까지 커버 가능 (10^8)
long long
-> 10^18까지 커버 가능
unsigned long long
이 제일 큼
Author And Source
이 문제에 관하여(BOJ 2748 : 피보나치 수 2 - C++), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@neity16/BOJ-2748-피보나치-수-2-C
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
#include <string> #include <vector> #include <iostream> using namespace std; unsigned long long d[100]; int N; int main(){ ios::sync_with_stdio(0); cin.tie(0); d[0] = 0; d[1] = 1; cin >> N; for(int i=2;i<=N;i++) d[i] = d[i-2] + d[i-1]; cout << d[N]; return 0; }
int
-> 21억 --> 1억대 까지 커버 가능 (10^8)long long
-> 10^18까지 커버 가능unsigned long long
이 제일 큼
Author And Source
이 문제에 관하여(BOJ 2748 : 피보나치 수 2 - C++), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@neity16/BOJ-2748-피보나치-수-2-C저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)