| Run ID |
作者 |
问题 |
语言 |
测评结果 |
Time |
Memory |
代码长度 |
提交时间 |
| 123207 |
丁俊杰 |
斐波那契数列 |
Python3 |
Wrong Answer |
36 MS |
3768 KB |
108 |
2025-06-28 13:20:31 |
Tests(1/11):
Code:
a1=1
a2=1
res=2
k=int(input())
while res<k:
a3=a1+a2
a1=a2
a2=a3
res+=1
print(a3)
Run Info:
------Input------
1
------Answer-----
1
------Your output-----