結果

問題 No.2751 429-like Number
ユーザー titiatitia
提出日時 2024-05-10 23:25:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,700 ms / 4,000 ms
コード長 712 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,664 KB
実行使用メモリ 77,960 KB
最終ジャッジ日時 2024-12-20 07:45:22
合計ジャッジ時間 21,882 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
60,652 KB
testcase_01 AC 47 ms
61,956 KB
testcase_02 AC 49 ms
60,948 KB
testcase_03 AC 48 ms
62,580 KB
testcase_04 AC 48 ms
62,160 KB
testcase_05 AC 50 ms
62,192 KB
testcase_06 AC 51 ms
62,000 KB
testcase_07 AC 119 ms
77,268 KB
testcase_08 AC 110 ms
71,676 KB
testcase_09 AC 1,700 ms
69,548 KB
testcase_10 AC 1,698 ms
70,780 KB
testcase_11 AC 1,625 ms
74,472 KB
testcase_12 AC 1,053 ms
77,704 KB
testcase_13 AC 631 ms
71,532 KB
testcase_14 AC 1,257 ms
72,324 KB
testcase_15 AC 62 ms
69,404 KB
testcase_16 AC 728 ms
77,872 KB
testcase_17 AC 722 ms
77,772 KB
testcase_18 AC 1,037 ms
77,568 KB
testcase_19 AC 1,042 ms
77,588 KB
testcase_20 AC 1,031 ms
77,960 KB
testcase_21 AC 1,044 ms
77,692 KB
testcase_22 AC 1,043 ms
77,444 KB
testcase_23 AC 1,044 ms
77,804 KB
testcase_24 AC 1,041 ms
77,448 KB
testcase_25 AC 1,043 ms
77,732 KB
testcase_26 AC 1,055 ms
77,680 KB
testcase_27 AC 1,049 ms
77,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

x=100010

import math 
L=math.floor(math.sqrt(x)) # 平方根を求める

Primelist=[i for i in range(x+1)]
Primelist[1]=0 # 1は素数でないので0にする.
 
for i in Primelist:
    if i>L:
        break
    if i==0:
        continue
    for j in range(2*i,x+1,i):
        Primelist[j]=0

Primes=[Primelist[j] for j in range(x+1) if Primelist[j]!=0]

Q=int(input())
for tests in range(Q):
    A=int(input())
    ANS=0
    for p in Primes:
        while A%p==0:
            ANS+=1
            A//=p

        if A==1:
            break
        if ANS>3:
            break

    if A!=1:
        ANS+=1

    if ANS==3:
        print("Yes")
    else:
        print("No")
0