Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
108364 展博 素数判断 Python3 Compile Error 0 MS 0 KB 140 2025-01-20 10:21:59

Tests(0/0):


Code:

n=int(input()) f=True for i in range(2,n+1): if n%i==0: f=False print('not prime') break if f==True: print('prime')


Run Info:

Sorry: TabError: inconsistent use of tabs and spaces in indentation (Main.py, line 6)