結果

問題 No.2751 429-like Number
ユーザー ああいいああいい
提出日時 2024-05-23 18:10:09
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 330 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 255,744 KB
最終ジャッジ日時 2024-12-20 18:57:56
合計ジャッジ時間 104,626 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
66,688 KB
testcase_01 AC 52 ms
235,796 KB
testcase_02 AC 73 ms
75,648 KB
testcase_03 AC 71 ms
221,604 KB
testcase_04 AC 49 ms
65,792 KB
testcase_05 AC 49 ms
68,884 KB
testcase_06 AC 107 ms
90,752 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 2,229 ms
255,744 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

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