結果

問題 No.2751 429-like Number
ユーザー ああいいああいい
提出日時 2024-05-23 18:12:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,699 ms / 4,000 ms
コード長 338 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 77,760 KB
最終ジャッジ日時 2024-12-20 18:59:50
合計ジャッジ時間 35,674 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
62,080 KB
testcase_01 AC 52 ms
62,208 KB
testcase_02 AC 53 ms
63,104 KB
testcase_03 AC 55 ms
62,464 KB
testcase_04 AC 49 ms
62,080 KB
testcase_05 AC 51 ms
62,592 KB
testcase_06 AC 56 ms
62,464 KB
testcase_07 AC 1,555 ms
77,480 KB
testcase_08 AC 1,560 ms
75,036 KB
testcase_09 AC 1,506 ms
72,960 KB
testcase_10 AC 1,499 ms
73,344 KB
testcase_11 AC 1,572 ms
77,104 KB
testcase_12 AC 1,595 ms
77,288 KB
testcase_13 AC 1,574 ms
77,080 KB
testcase_14 AC 1,565 ms
74,368 KB
testcase_15 AC 1,570 ms
74,752 KB
testcase_16 AC 1,598 ms
77,668 KB
testcase_17 AC 1,608 ms
77,760 KB
testcase_18 AC 1,609 ms
77,440 KB
testcase_19 AC 1,596 ms
77,468 KB
testcase_20 AC 1,626 ms
77,700 KB
testcase_21 AC 1,684 ms
77,476 KB
testcase_22 AC 1,632 ms
77,312 KB
testcase_23 AC 1,550 ms
77,552 KB
testcase_24 AC 1,607 ms
77,472 KB
testcase_25 AC 1,699 ms
77,440 KB
testcase_26 AC 1,617 ms
77,472 KB
testcase_27 AC 1,608 ms
77,532 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