結果

問題 No.36 素数が嫌い!
ユーザー 𖧱𖦸𖥩𖥣𖥩𖥣
提出日時 2024-04-30 16:37:40
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 219 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-20 13:25:37
合計ジャッジ時間 13,317 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
n = int(input())
for i in range(1, int(n**0.5)+2):
	if n%i == 0 and i != 1 and i != n:
		for j in range(1, int(i**0.5)+2):
			if j != 1 and i%j == 0 and j != i:
				print("YES")
				sys.exit()
print("NO")
			
0