Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
107983 | 伍长辉 | 判断素数 | Python3 | Compile Error | 0 MS | 0 KB | 131 | 2025-01-19 10:28:28 |
fl=1 n=input() n=int(n) for x in range(2,n-1+1): if n%x==0: fl=0 if fl==1: print('prime') else: print('not ptime')
Sorry: TabError: inconsistent use of tabs and spaces in indentation (Main.py, line 6)