1 Star 1 Fork 0

AYO/Algorithm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
A.py 343 Bytes
一键复制 编辑 原始数据 按行查看 历史
AYO 提交于 2022-06-23 13:04 . 试题A勘误
# coding=utf-8
import functools
import numpy as np
@functools.lru_cache()
def fib(n):
if n <= 2:
return 1
return np.mod(np.add(fib(n - 1), fib(n - 2)), 10)
c = 0
for i in range(1, 1000):
c += 1
# fib()本身自带%10,仅取个位
print(fib(i), end=' ' if c % 60 != 0 else '\n')
print(202202011200 / 60 * 8)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/ayo_yo/Algorithm.git
[email protected]:ayo_yo/Algorithm.git
ayo_yo
Algorithm
Algorithm
蓝桥杯_国赛

搜索帮助