Điểm:
100
Thời gian:
1.0s
Bộ nhớ:
256M
Input:
bàn phím
Output:
màn hình
Nhập vào \(n\), in ra \(n\) số fibo đầu tiên.
Dãy Fibonacci \(1, 1, 2, 3, 5, 8, .....\)
Example
Test 1
Input
4
Output
1 1 2 3
Bình luận
Code Python:
n = int(input()) L = ["1"] PreAns = 1 Ans = 1 if n == 0: print("") else: for i in range(n-1): L.append(str(Ans)) Ans1 = Ans Ans = PreAns + Ans PreAns = Ans1 print(' '.join(L))
include <bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin>>n;
int a[1000]={0};
if (n==0) {
return 0;
}
a[1]=a[0]=1;
cout<<1<<" "<<1<<" ";
for (int i=2;i<n;i++)
{
a[i]=a[i-1]+a[i-2];
cout<<a[i]<<" ";
}
return 0;
}
0
sao tui thử thì đúm mà nộp thì IR v?
AC EZ :>
ảo vãi
EZ
Test bài này ảo thật, nhiều cách rồi mà vẫn không ăn đc test nào. Bạn nào full rồi cho mình code tham khảo với.
tang memory di ad cho em lm c++ voi
ơ bài này chạy đúng r sao lại bị memory limit vậy sửa lại dữ liệu đi ad ơi !
5 bình luận nữa