結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
61,032 KB
testcase_01 AC 50 ms
60,548 KB
testcase_02 AC 48 ms
60,612 KB
testcase_03 AC 46 ms
60,440 KB
testcase_04 AC 47 ms
61,920 KB
testcase_05 AC 49 ms
61,040 KB
testcase_06 WA -
testcase_07 AC 122 ms
77,608 KB
testcase_08 AC 126 ms
77,564 KB
testcase_09 AC 1,631 ms
77,276 KB
testcase_10 AC 1,611 ms
77,616 KB
testcase_11 AC 1,469 ms
77,636 KB
testcase_12 AC 1,320 ms
77,720 KB
testcase_13 AC 647 ms
77,592 KB
testcase_14 WA -
testcase_15 AC 83 ms
77,328 KB
testcase_16 AC 733 ms
77,376 KB
testcase_17 AC 752 ms
77,648 KB
testcase_18 AC 1,219 ms
77,480 KB
testcase_19 AC 1,131 ms
77,676 KB
testcase_20 AC 1,241 ms
77,476 KB
testcase_21 AC 1,236 ms
77,600 KB
testcase_22 AC 1,251 ms
77,728 KB
testcase_23 AC 1,237 ms
77,344 KB
testcase_24 AC 1,273 ms
77,336 KB
testcase_25 AC 1,238 ms
77,448 KB
testcase_26 AC 1,261 ms
77,704 KB
testcase_27 AC 1,227 ms
77,556 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