結果

問題 No.36 素数が嫌い!
ユーザー ixmelixmel
提出日時 2017-03-30 20:50:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 317 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 90,760 KB
最終ジャッジ日時 2024-07-07 03:11:34
合計ジャッジ時間 75,552 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,030 ms
90,760 KB
testcase_01 WA -
testcase_02 AC 1,994 ms
89,140 KB
testcase_03 AC 2,008 ms
89,020 KB
testcase_04 AC 2,060 ms
88,996 KB
testcase_05 AC 1,956 ms
89,168 KB
testcase_06 AC 2,016 ms
88,928 KB
testcase_07 AC 2,102 ms
89,072 KB
testcase_08 AC 1,982 ms
88,960 KB
testcase_09 AC 2,045 ms
89,160 KB
testcase_10 AC 1,985 ms
88,932 KB
testcase_11 AC 2,538 ms
88,956 KB
testcase_12 AC 3,713 ms
89,104 KB
testcase_13 AC 3,552 ms
89,056 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1,974 ms
88,944 KB
testcase_17 AC 1,995 ms
89,056 KB
testcase_18 AC 2,063 ms
89,052 KB
testcase_19 AC 2,053 ms
89,076 KB
testcase_20 AC 2,208 ms
89,024 KB
testcase_21 AC 1,992 ms
88,976 KB
testcase_22 AC 1,996 ms
88,936 KB
testcase_23 AC 2,022 ms
89,088 KB
testcase_24 WA -
testcase_25 AC 2,076 ms
89,000 KB
testcase_26 AC 3,001 ms
88,992 KB
testcase_27 AC 3,350 ms
89,052 KB
testcase_28 AC 3,004 ms
88,960 KB
testcase_29 AC 3,410 ms
88,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
def sieve(n):
	p=[True for i in range(n+1)]
	p[0]=p[1]=False
	end=int(n**0.5)
	for i in range(2,end+1):
		if p[i]:
			for j in range(i*i,n+1,i):
				p[j]=False
	return p
p=sieve(10**7+10)
out="NO"
n=int(input())
for i in range(2,int(math.sqrt(n))+1):
	if n%i==0 and p[i]==0:
		out="YES"
		break
print(out)
0