結果

問題 No.2751 429-like Number
ユーザー ああいいああいい
提出日時 2024-05-23 18:12:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 316 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 77,992 KB
最終ジャッジ日時 2024-05-23 18:13:05
合計ジャッジ時間 32,022 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
62,560 KB
testcase_01 AC 43 ms
62,996 KB
testcase_02 AC 42 ms
63,564 KB
testcase_03 AC 42 ms
63,596 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1,403 ms
77,508 KB
testcase_08 AC 1,450 ms
75,080 KB
testcase_09 AC 1,400 ms
73,152 KB
testcase_10 AC 1,409 ms
73,904 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,427 ms
77,116 KB
testcase_14 AC 1,440 ms
75,144 KB
testcase_15 AC 1,396 ms
75,220 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

Q = int(input())

C = 10 ** 5

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