結果

問題 No.36 素数が嫌い!
ユーザー 双六双六
提出日時 2020-07-26 03:15:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 711 ms / 5,000 ms
コード長 979 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 189,640 KB
最終ジャッジ日時 2024-06-27 19:06:57
合計ジャッジ時間 22,766 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 688 ms
187,656 KB
testcase_01 AC 669 ms
188,332 KB
testcase_02 AC 677 ms
188,048 KB
testcase_03 AC 674 ms
188,240 KB
testcase_04 AC 689 ms
188,376 KB
testcase_05 AC 684 ms
188,500 KB
testcase_06 AC 698 ms
188,684 KB
testcase_07 AC 683 ms
188,240 KB
testcase_08 AC 667 ms
187,792 KB
testcase_09 AC 680 ms
188,372 KB
testcase_10 AC 694 ms
187,664 KB
testcase_11 AC 685 ms
188,316 KB
testcase_12 AC 672 ms
188,380 KB
testcase_13 AC 667 ms
188,348 KB
testcase_14 AC 662 ms
188,480 KB
testcase_15 AC 665 ms
188,244 KB
testcase_16 AC 671 ms
188,440 KB
testcase_17 AC 654 ms
188,900 KB
testcase_18 AC 675 ms
188,824 KB
testcase_19 AC 679 ms
188,068 KB
testcase_20 AC 685 ms
188,440 KB
testcase_21 AC 684 ms
188,836 KB
testcase_22 AC 711 ms
188,184 KB
testcase_23 AC 689 ms
188,216 KB
testcase_24 AC 694 ms
188,496 KB
testcase_25 AC 679 ms
189,640 KB
testcase_26 AC 680 ms
188,448 KB
testcase_27 AC 681 ms
188,936 KB
testcase_28 AC 665 ms
188,324 KB
testcase_29 AC 663 ms
188,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#篩
num = 10 ** 7 + 1 #適当に値を入れる
L = [1 for i in range(num)]; L[0] = 0; L[1] = 0
plist = []
for i in range(num):
	if L[i] == 1:
		plist.append(i); c = 2
		while i * c <= num - 1:
			L[i * c] = 0; c += 1

def prime_factorization(N):
	D = defaultdict(int)
	for i in plist:
		while N % i == 0:
			D[i] += 1; N = int(N // i)

	#num以上の素数が含まれているケースの処理
	if N != 1:
		D[N] += 1

	return D

#処理内容
def main():
	N = int(input())
	fac = prime_factorization(N)
	if len(fac) >= 3:
		print("YES")
		return
	if len(fac) == 1:
		for key, value in fac.items():
			if value <= 2:
				print("NO")
				return

	for key, value in fac.items():
		if value >= 2:
			print("YES")
			return

	print("NO")

if __name__ == '__main__':
	main()
0