Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
108778 | 展博 | 100至200之间的所有素数 | Python3 | Compile Error | 0 MS | 0 KB | 108 | 2025-01-22 08:26:13 |
x=200 f=True for i in range(101,x): if x%i==0: f=False continue if f==True: print(x)
Sorry: TabError: inconsistent use of tabs and spaces in indentation (Main.py, line 5)