結果

問題 No.2751 429-like Number
ユーザー ああいいああいい
提出日時 2024-05-23 18:10:09
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 330 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 189,736 KB
最終ジャッジ日時 2024-05-23 18:10:16
合計ジャッジ時間 6,704 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
63,000 KB
testcase_01 AC 44 ms
62,720 KB
testcase_02 AC 62 ms
71,640 KB
testcase_03 AC 63 ms
71,012 KB
testcase_04 AC 41 ms
61,352 KB
testcase_05 AC 42 ms
61,252 KB
testcase_06 AC 89 ms
85,628 KB
testcase_07 TLE -
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 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

Q = int(input())

C = 8 * 10 ** 4

for _ in range(Q):
	A = int(input())
	dat = [0] * C
	count = 0
	for i in range(2,C):
		if dat[i] == 0:
			for j in range(i,C,i):
				dat[j] = 1
			while A % i == 0:
				count += 1
				A //= i
			if count > 3:
				break
	if A != 1:count += 1
	if count == 3:
		print('Yes')
	else:
		print('No')
		
0