题目 The GCD of Fibonacci Numbers 思路 重要性质:,当中 表示斐波那契数列的第 项。 题目中保证了 直接递推求就可以了。 #include<iostream> #include<string> #include<cstring> #include<cstdio> #include<algorithm> typedef long long ll; ll t,n,m,fib[47]; inline void read(ll &T) { ll x=0;bool f=0;char c=getchar()...