Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
108583 伍长辉 判断素数 Python3 Compile Error 0 MS 0 KB 151 2025-01-20 21:05:11

Tests(0/0):


Code:

a=1 b=input() b=int(b) for x in range(2,b-1+1): if b%x==0: a=0 break if a==1: print('prime') else: print('not prime')


Run Info:

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