4 5 2 19 1
5 1 181 1
#include<bits/stdc++.h> using namespace std; int a[1000010]; int main(){ int k,c; cin>>k; a[1]=1; a[2]=1; for(int j=3;j<=1500;j++) a[j]=(a[j-1]+a[j-2])%1000; a[0]=a[1500]; for(int i=1;i<=k;i++){ cin>>c; cout<<a[c%1500]<<endl; } }
//一个新蒟蒻的小笔记。。。
//还借鉴了某大佬的方法。。。
原文:https://www.cnblogs.com/crazily/p/9490571.html