結果

問題 No.2751 429-like Number
ユーザー detteiuudetteiuu
提出日時 2024-05-10 21:45:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 878 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 77,852 KB
最終ジャッジ日時 2024-05-10 21:46:19
合計ジャッジ時間 23,129 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
60,512 KB
testcase_01 AC 41 ms
61,536 KB
testcase_02 AC 42 ms
61,096 KB
testcase_03 AC 42 ms
60,936 KB
testcase_04 AC 44 ms
61,604 KB
testcase_05 AC 49 ms
62,176 KB
testcase_06 WA -
testcase_07 AC 114 ms
77,852 KB
testcase_08 AC 113 ms
77,828 KB
testcase_09 AC 1,644 ms
77,316 KB
testcase_10 AC 1,554 ms
77,508 KB
testcase_11 AC 1,410 ms
77,672 KB
testcase_12 AC 1,289 ms
77,700 KB
testcase_13 AC 614 ms
77,652 KB
testcase_14 WA -
testcase_15 AC 79 ms
77,336 KB
testcase_16 AC 694 ms
77,504 KB
testcase_17 AC 700 ms
77,492 KB
testcase_18 AC 1,212 ms
77,320 KB
testcase_19 AC 1,200 ms
77,212 KB
testcase_20 AC 1,155 ms
77,440 KB
testcase_21 AC 1,218 ms
77,464 KB
testcase_22 AC 1,192 ms
77,332 KB
testcase_23 AC 1,198 ms
77,320 KB
testcase_24 AC 1,225 ms
77,816 KB
testcase_25 AC 1,195 ms
77,572 KB
testcase_26 AC 1,219 ms
77,704 KB
testcase_27 AC 1,187 ms
77,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q = int(input())
A = [int(input()) for _ in range(Q)]

def eratosthenes(n):
    sieve = [True] * (n + 1)
    for i in range(int(n**0.5) + 1):
        if i < 2:
            sieve[i] = False
        elif sieve[i]:
            for j in range(2, n//i + 1):
                sieve[i * j] = False
    ans = []
    for i in range(n+1):
        if sieve[i]:
            ans.append(i)
    return ans

prime = eratosthenes(10**5)
D = dict()
for i in range(Q):
    if A[i] in D:
        if D[A[i]] == 3:
            print("Yes")
        else:
            print("No")
        continue
    N = A[i]
    cnt = 0
    idx = 0
    while N >= 2 and idx < len(prime):
        while N % prime[idx] == 0:
            N //= prime[idx]
            cnt += 1
        idx += 1
    if idx == len(prime):
        cnt += 1
    D[A[i]] = cnt
    if cnt == 3:
        print("Yes")
    else:
        print("No")
0