結果

問題 No.36 素数が嫌い!
ユーザー 双六双六
提出日時 2020-07-26 02:23:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 882 bytes
コンパイル時間 822 ms
コンパイル使用メモリ 86,844 KB
実行使用メモリ 202,380 KB
最終ジャッジ日時 2023-09-10 02:50:57
合計ジャッジ時間 26,250 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 766 ms
201,900 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 758 ms
201,660 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 758 ms
201,820 KB
testcase_09 WA -
testcase_10 AC 759 ms
201,840 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 754 ms
201,832 KB
testcase_14 WA -
testcase_15 AC 748 ms
201,820 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 765 ms
202,092 KB
testcase_20 AC 766 ms
201,600 KB
testcase_21 AC 775 ms
202,040 KB
testcase_22 AC 765 ms
202,044 KB
testcase_23 AC 767 ms
201,676 KB
testcase_24 AC 757 ms
201,816 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

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

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

	print("YES")

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