結果

問題 No.2751 429-like Number
ユーザー ああいいああいい
提出日時 2024-05-23 18:12:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,554 ms / 4,000 ms
コード長 338 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,692 KB
最終ジャッジ日時 2024-05-23 18:13:28
合計ジャッジ時間 31,645 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
62,192 KB
testcase_01 AC 45 ms
62,988 KB
testcase_02 AC 47 ms
64,232 KB
testcase_03 AC 45 ms
63,392 KB
testcase_04 AC 41 ms
63,108 KB
testcase_05 AC 40 ms
63,504 KB
testcase_06 AC 53 ms
64,308 KB
testcase_07 AC 1,379 ms
77,340 KB
testcase_08 AC 1,408 ms
75,144 KB
testcase_09 AC 1,390 ms
73,236 KB
testcase_10 AC 1,382 ms
73,564 KB
testcase_11 AC 1,451 ms
77,256 KB
testcase_12 AC 1,448 ms
77,540 KB
testcase_13 AC 1,414 ms
77,200 KB
testcase_14 AC 1,422 ms
74,924 KB
testcase_15 AC 1,420 ms
74,836 KB
testcase_16 AC 1,422 ms
77,584 KB
testcase_17 AC 1,495 ms
77,460 KB
testcase_18 AC 1,440 ms
77,644 KB
testcase_19 AC 1,428 ms
77,604 KB
testcase_20 AC 1,449 ms
77,692 KB
testcase_21 AC 1,489 ms
77,548 KB
testcase_22 AC 1,467 ms
77,376 KB
testcase_23 AC 1,448 ms
77,352 KB
testcase_24 AC 1,465 ms
77,444 KB
testcase_25 AC 1,438 ms
77,396 KB
testcase_26 AC 1,451 ms
77,636 KB
testcase_27 AC 1,554 ms
77,652 KB
権限があれば一括ダウンロードができます

ソースコード

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 A != 1:count += 1
	if count == 3:
		print('Yes')
	else:
		print('No')
0