coding笔记: acwing 1303 斐波那契前 n 项和
Acwing 1303 斐波那契前 n 项和
Content
大家都知道 Fibonacci 数列吧,f1=1,f2=1,f3=2,f4=3,…,fn=fn−1+fn−2。现在问题很简单,输入 n 和 m,求 fn
的前 n 项和 Sn mod m。
Input
共一行,包含两个整数 n 和 m。
Output
输出前 n 项和 Sn mod m 的值。
Code
这道题其实很有意思,其计算通式为
求斐波那契数列(logn)
令
由
同理可以推广到前n项和。
求斐波那契数列前n项和(logn)
令
由
1 |
|
- Post title:coding笔记: acwing 1303 斐波那契前 n 项和
- Post author:sixwalter
- Create time:2023-08-05 11:14:26
- Post link:https://coelien.github.io/2023/08/05/coding-solution/acwing_1303/
- Copyright Notice:All articles in this blog are licensed under BY-NC-SA unless stating additionally.
Comments