Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94213 潘允晨 判断素数 Python3 Wrong Answer 38 MS 3752 KB 145 2024-10-20 09:15:52

Tests(0/1):


Code:

a=int(input()) s=1 for x in range(2,a): if a%x==0: s=0 break if s==0: print("no prime") else: print("prime")


Run Info:

------Input------
23496801
------Answer-----
not prime
------Your output-----
no prime