-
个人简介
谁家斐波那契题目是后台数据错误的我🥥你🐎
#include <iostream> const int MOD = 1000; int fibonacci(int n) { if (n <= 2) { return 1; } int a = 1, b = 1, c; for (int i = 3; i <= n; ++i) { c = (a + b) % MOD; a = b; b = c; } return c; } int main() { int t; std::cin >> t; while (t--) { int n; std::cin >> n; std::cout << fibonacci(n) << std::endl; } return 0; }
-
通过的题目
-
最近活动
-
最近编写的题解
-
Stat
-
Rating
题目标签
- 字符串
- 3
- 字典树
- 2
- 模拟
- 2
- 系统测试
- 1
- O2优化
- 1
- 数论
- 1
- 数学
- 1
- 枚举
- 1
- 暴力
- 1