| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 118470 | 胡皓宇 | 判断素数 | Python3 | Compile Error | 0 MS | 0 KB | 147 | 2025-05-04 08:43:38 |
a = int(input()) f = True for i in range(2,n): if a%i==0: print("not prime") f = False break if f==True: print("prime")
Sorry: IndentationError: expected an indented block (Main.py, line 5)