Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
118474 | 赵乘浩 | 判断素数 | Python3 | Compile Error | 0 MS | 0 KB | 141 | 2025-05-04 08:46:10 |
n=int(input()) flag=True for i in range(2,n): if a%i==0: print("not prime") flag=False break if falg==True: print("prime")
Sorry: TabError: inconsistent use of tabs and spaces in indentation (Main.py, line 5)