| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 151595 | 夏宇航 | [在线测评解答教程] 求和 | Python3 | Compile Error | 0 MS | 0 KB | 77 | 2026-04-15 17:06:24 |
def fun(a) a=int(input()) s=0 for i in range(1,a+1) s=s+i print(s)
File "Main.py", line 1
def fun(a)
^
SyntaxError: invalid syntax