結果

問題 No.2751 429-like Number
ユーザー ArleenArleen
提出日時 2024-05-09 04:52:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 858 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,720 KB
最終ジャッジ日時 2024-05-10 18:23:48
合計ジャッジ時間 6,327 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
18,720 KB
testcase_01 AC 157 ms
11,904 KB
testcase_02 AC 135 ms
11,776 KB
testcase_03 AC 174 ms
11,776 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 429は、3x11x13と素因数分解できる
# 素因数を丁度3個持つ非負整数を429-like Numberとよぶ
# 与えられたQ個の非負整数が429-like Numberかどうかを判定せよ
# 1 <= Q <= 10000
# 1 <= A_i <= 10^10

primetable = []
for i in range(0, 100001):
	primetable.append(True)
primetable[0] = False
primetable[1] = False
for i in range(2, 318):
	n = 2 * i
	while n <= 100000:
		primetable[n] = False
		n += i

prime = []
for i in range(0, 100001):
	if primetable[i]:
		prime.append(i)

Q = int(input())
for i in range(0, Q):
	A = int(input())
	cnt = 0
	idx = 0
	while cnt < 3 and idx < len(prime):
		if A % prime[idx] == 0:
			cnt += 1
			A //= prime[idx]
		else:
			idx += 1
	if cnt == 3:
		if A == 1:
			print('Yes')
		else:
			print('No')
	elif cnt == 2:
		if A == 1:
			print('No')
		else:
			print('Yes')
	else:
		print('No')
0