Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
98977 | 战佳旭 | 小明养猪的故事 | Python3 | Compile Error | 0 MS | 0 KB | 105 | 2024-11-23 20:26:33 |
n =int(input()) def a(n): if n <= 2: return 1 else: return a(n-1)+a(n-2) print(a(n))
Sorry: TabError: inconsistent use of tabs and spaces in indentation (Main.py, line 4)