結果

問題 No.2074 Product is Square ?
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-09-16 21:47:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,530 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 85,504 KB
最終ジャッジ日時 2024-06-01 12:21:08
合計ジャッジ時間 24,586 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
62,644 KB
testcase_01 WA -
testcase_02 AC 1,826 ms
79,616 KB
testcase_03 AC 1,845 ms
79,380 KB
testcase_04 WA -
testcase_05 AC 1,792 ms
79,228 KB
testcase_06 AC 1,849 ms
79,328 KB
testcase_07 AC 1,772 ms
79,272 KB
testcase_08 AC 1,734 ms
78,976 KB
testcase_09 AC 1,762 ms
79,072 KB
testcase_10 AC 1,818 ms
79,016 KB
testcase_11 AC 861 ms
78,584 KB
testcase_12 AC 1,703 ms
79,488 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #




from math import gcd
import random
from collections import defaultdict
def is_prime(n):
    if n==2:
        return True
    if n==1 or n&1==0:
        return False
    d=(n-1)>>1
    while d&1==0:
        d>>=1

    for k in range(100):
        a=random.randint(1,n-1)
        t=d
        y=pow(a, t, n)
        while t!=n-1 and y!=1 and y!=n-1:
            y=(y*y)%n
            t<<=1
        if y!=n-1 and t&1==0:
            return False
    return True
def prime_f(x,N):
    return (x*x+1)%N
def prime_fact(N):
    res=defaultdict(int)
    if N==1:
        return res
    p=2
    while(p<=10**4 and N>1):
        if N%p==0:
            while(N%p==0):
                res[p]+=1
                N//=p
        p+=1
    while(N>1):
        if is_prime(N):
            res[N]+=1
            break
        x=random.randrange(N)
        y=prime_f(x,N)
        i=1
        while(True):
            d=gcd(abs(x-y),N)
            if d==1:
                i+=1
            elif d==N:
                res[N]+=1
                return res
            else:
                res[d]+=1
                N//=d
                break
            x=prime_f(x,N)
            y=prime_f(prime_f(y,N),N)
    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=prime_fact(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