結果

問題 No.2751 429-like Number
ユーザー ArleenArleen
提出日時 2024-05-09 04:42:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,714 ms / 4,000 ms
コード長 858 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 82,652 KB
最終ジャッジ日時 2024-12-20 04:01:40
合計ジャッジ時間 20,775 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
68,480 KB
testcase_01 AC 57 ms
67,384 KB
testcase_02 AC 64 ms
69,156 KB
testcase_03 AC 60 ms
70,172 KB
testcase_04 AC 59 ms
69,208 KB
testcase_05 AC 57 ms
68,892 KB
testcase_06 AC 64 ms
70,100 KB
testcase_07 AC 779 ms
82,420 KB
testcase_08 AC 131 ms
80,780 KB
testcase_09 AC 1,398 ms
79,452 KB
testcase_10 AC 1,382 ms
79,716 KB
testcase_11 AC 1,600 ms
82,652 KB
testcase_12 AC 785 ms
82,368 KB
testcase_13 AC 1,636 ms
82,608 KB
testcase_14 AC 1,714 ms
82,352 KB
testcase_15 AC 98 ms
80,348 KB
testcase_16 AC 846 ms
82,236 KB
testcase_17 AC 850 ms
82,224 KB
testcase_18 AC 775 ms
82,376 KB
testcase_19 AC 776 ms
82,536 KB
testcase_20 AC 772 ms
82,196 KB
testcase_21 AC 776 ms
82,548 KB
testcase_22 AC 787 ms
82,552 KB
testcase_23 AC 782 ms
82,540 KB
testcase_24 AC 783 ms
82,288 KB
testcase_25 AC 780 ms
82,432 KB
testcase_26 AC 786 ms
82,156 KB
testcase_27 AC 789 ms
82,348 KB
権限があれば一括ダウンロードができます

ソースコード

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