Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
112671 | 杨嘉陆 | 判断素数 | Python3 | Compile Error | 0 MS | 0 KB | 233 | 2025-03-09 21:43:12 |
m=int(input()) n=1 if m>1 and m<100000000: for x in range(2,m): if m%x==0: n=n-1 break else: n=n+0 if n==1: print("prime") else: print("not prime")
Sorry: TabError: inconsistent use of tabs and spaces in indentation (Main.py, line 7)