結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
67,564 KB
testcase_01 AC 60 ms
70,240 KB
testcase_02 AC 51 ms
68,752 KB
testcase_03 AC 57 ms
70,856 KB
testcase_04 AC 734 ms
82,084 KB
testcase_05 AC 128 ms
80,508 KB
testcase_06 AC 1,464 ms
79,468 KB
testcase_07 AC 1,334 ms
80,384 KB
testcase_08 AC 1,553 ms
82,596 KB
testcase_09 AC 734 ms
82,424 KB
testcase_10 AC 1,558 ms
82,632 KB
testcase_11 AC 1,615 ms
82,252 KB
testcase_12 AC 85 ms
80,288 KB
testcase_13 AC 869 ms
82,572 KB
testcase_14 AC 813 ms
82,516 KB
testcase_15 AC 747 ms
82,432 KB
testcase_16 AC 733 ms
82,360 KB
testcase_17 AC 730 ms
82,160 KB
testcase_18 AC 725 ms
82,284 KB
testcase_19 AC 734 ms
82,656 KB
testcase_20 AC 741 ms
82,360 KB
testcase_21 AC 747 ms
82,548 KB
testcase_22 AC 738 ms
82,572 KB
testcase_23 AC 779 ms
82,280 KB
testcase_24 AC 760 ms
82,208 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