Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
116124 伍长辉 13判断质数 Python3 Accepted 36 MS 3776 KB 209 2025-04-06 13:50:09

Tests(10/10):


Code:

a=int(input()) t=True if a==1: print('no') else: t=True for i in range(2,a): if a%i==0: t=False break if t==True: print('Yes') else: print('No')