| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 118485 | 赵乘浩 | 判断素数 | Python3 | Compile Error | 0 MS | 0 KB | 160 | 2025-05-04 09:08:18 |
def is_prime(n): for i in range(2, n): if n % i == 0: print("not prime") return print("prime") n=int(input()) is_prine(n)
Sorry: TabError: inconsistent use of tabs and spaces in indentation (Main.py, line 3)