結果

問題 No.2751 429-like Number
ユーザー ryohei22ryohei22
提出日時 2024-05-10 21:55:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 685 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 77,904 KB
最終ジャッジ日時 2024-05-10 21:55:38
合計ジャッジ時間 7,783 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
64,284 KB
testcase_01 AC 49 ms
64,648 KB
testcase_02 AC 50 ms
65,796 KB
testcase_03 AC 48 ms
64,696 KB
testcase_04 AC 50 ms
64,996 KB
testcase_05 AC 51 ms
64,664 KB
testcase_06 WA -
testcase_07 AC 299 ms
77,804 KB
testcase_08 AC 310 ms
77,244 KB
testcase_09 AC 267 ms
77,368 KB
testcase_10 AC 265 ms
77,316 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 282 ms
77,084 KB
testcase_14 AC 270 ms
77,464 KB
testcase_15 AC 289 ms
77,216 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime(n: int) -> list:
    lis = []
    queue = [i for i in range(n, 1, -1)]
    dic = {i: True for i in range(1, n+1)}
    while queue:
        a = queue.pop()
        if not dic[a]:
            continue
        lis.append(a)
        dic[a] = False
        for i in range(2, n//a+1):
            if a * i <= n and dic[a*i]:
                dic[a*i] = False
    return lis

def f(n):
	if n == 1:
		return 0

	init = n
	cnt = 0
	for i in prime_lst:
		if n % i == 0:
			while n % i == 0:
				n //= i
				cnt += 1

	if n != 1:
		cnt += 1
	return cnt == 3


Q = int(input())

prime_lst = prime(10**4)

for _ in range(Q):
	a = int(input())
	if f(a):
		print('Yes')
	else:
		print('No')
0