結果

問題 No.2751 429-like Number
ユーザー 👑 p-adicp-adic
提出日時 2024-05-09 10:43:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,680 ms / 4,000 ms
コード長 212 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 77,788 KB
最終ジャッジ日時 2024-05-10 18:24:37
合計ジャッジ時間 35,814 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
62,120 KB
testcase_01 AC 49 ms
62,716 KB
testcase_02 AC 47 ms
63,404 KB
testcase_03 AC 53 ms
63,176 KB
testcase_04 AC 1,633 ms
77,208 KB
testcase_05 AC 1,620 ms
76,964 KB
testcase_06 AC 1,600 ms
74,660 KB
testcase_07 AC 1,606 ms
74,808 KB
testcase_08 AC 1,629 ms
77,188 KB
testcase_09 AC 1,659 ms
77,432 KB
testcase_10 AC 1,628 ms
77,536 KB
testcase_11 AC 1,558 ms
75,320 KB
testcase_12 AC 1,622 ms
75,544 KB
testcase_13 AC 1,652 ms
77,532 KB
testcase_14 AC 1,654 ms
77,492 KB
testcase_15 AC 1,680 ms
77,548 KB
testcase_16 AC 1,653 ms
77,248 KB
testcase_17 AC 1,657 ms
77,544 KB
testcase_18 AC 1,658 ms
77,788 KB
testcase_19 AC 1,656 ms
77,340 KB
testcase_20 AC 1,654 ms
77,652 KB
testcase_21 AC 1,653 ms
77,616 KB
testcase_22 AC 1,660 ms
77,380 KB
testcase_23 AC 1,661 ms
77,500 KB
testcase_24 AC 1,651 ms
77,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
L=10**5
P=[]
C=[0]*L
for i in R(2,L):
	if C[i]<1:
		P+=[i];j=i*i
		while j<L:C[j],j=1,j+i
for q in R(int(I())):
	N=int(I());a=0
	for p in P:
		while N%p<1:N//=p;a+=1
	print("YNeos"[a+(N>1)!=3::2])
0