結果

問題 No.2074 Product is Square ?
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-09-16 22:06:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,576 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 80,364 KB
最終ジャッジ日時 2024-06-01 13:08:35
合計ジャッジ時間 29,565 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
55,808 KB
testcase_01 AC 681 ms
79,104 KB
testcase_02 AC 679 ms
78,956 KB
testcase_03 AC 678 ms
79,060 KB
testcase_04 AC 679 ms
78,976 KB
testcase_05 AC 685 ms
78,592 KB
testcase_06 AC 690 ms
78,848 KB
testcase_07 AC 688 ms
78,688 KB
testcase_08 AC 674 ms
79,488 KB
testcase_09 AC 644 ms
79,232 KB
testcase_10 AC 667 ms
78,852 KB
testcase_11 AC 296 ms
79,648 KB
testcase_12 AC 706 ms
80,364 KB
testcase_13 TLE -
testcase_14 AC 442 ms
79,236 KB
testcase_15 AC 284 ms
78,824 KB
testcase_16 AC 754 ms
79,616 KB
testcase_17 TLE -
testcase_18 AC 502 ms
79,360 KB
testcase_19 AC 300 ms
79,072 KB
testcase_20 AC 729 ms
79,776 KB
testcase_21 TLE -
testcase_22 AC 432 ms
79,832 KB
testcase_23 AC 295 ms
79,104 KB
testcase_24 AC 777 ms
80,000 KB
testcase_25 TLE -
testcase_26 AC 463 ms
79,764 KB
testcase_27 AC 277 ms
79,176 KB
testcase_28 AC 790 ms
80,000 KB
testcase_29 TLE -
testcase_30 AC 448 ms
79,228 KB
testcase_31 AC 117 ms
77,224 KB
testcase_32 AC 48 ms
56,320 KB
testcase_33 AC 99 ms
77,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


# https://old.yosupo.jp/submission/90839
from random import randrange

def gcd(a, b):
    while a:
        a, b = b%a, a
    return b


def is_prime(n):
    if n == 2:
        return 1
    if n == 1 or n%2 == 0:
        return 0

    m = n - 1
    lsb = m & -m
    s = lsb.bit_length()-1
    d = m // lsb
    if n < 4759123141:
        test_numbers = [2, 7, 61]
    elif n < 341550071728321:
        test_numbers = [2, 3, 5, 7, 11, 13, 17]
    elif n < 3825123056546413051:
        test_numbers = [2, 3, 5, 7, 11, 13, 17, 19, 23]
    else:
        test_numbers = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37]

    for a in test_numbers:
        if a == n:
            continue
        x = pow(a,d,n)
        r = 0
        if x == 1:
            continue
        while x != m:
            x = pow(x,2,n)
            r += 1
            if x == 1 or r == s:
                return 0
    return 1



def find_prime_factor(n):
    m = max(1,int(n**0.125))

    while True:
        c = randrange(n)
        y = k = 0
        g = q = r = 1
        while g == 1:
            x = y
            mr = 3*r//4
            while k < mr:
                y = (pow(y,2,n)+c)%n
                k += 1
            while k < r and g == 1:
                ys = y
                for _ in range(min(m, r-k)):
                    y = (pow(y,2,n)+c)%n
                    q = q*abs(x-y)%n
                g = gcd(q,n)
                k += m
            k = r
            r <<= 1
        if g == n:
            g = 1
            y = ys
            while g == 1:
                y = (pow(y,2,n)+c)%n
                g = gcd(abs(x-y),n)
        if g == n:
            continue
        if is_prime(g):
            return g
        elif is_prime(n//g):
            return n//g
        else:
            return find_prime_factor(g)


def factorize(n):
    res = {}
    for p in range(2,1000):
        if p*p > n:
            break
        if n%p:
            continue
        s = 0
        while n%p == 0:
            n //= p
            s += 1
        res[p] = s

    while not is_prime(n) and n > 1:
        p = find_prime_factor(n)
        s = 0
        while n%p == 0:
            n //= p
            s += 1
        res[p] = s
    if n > 1:
        res[n] = 1
    return res


T=int(input())
from collections import defaultdict
for iii in range(T):
    n=int(input())
    a=list(map(int,input().split()))
    ans=defaultdict(int)
    for x in a:
        pri=factorize(x)
        for p in pri:ans[p]+=pri[p]
    flag=1
    for p in ans:
        if ans[p]%2==1:flag=0
    print("Yes" if flag else "No")
0