結果

問題 No.2074 Product is Square ?
ユーザー 👑 KazunKazun
提出日時 2022-09-16 22:50:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 441 ms / 2,000 ms
コード長 602 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 77,256 KB
最終ジャッジ日時 2024-06-01 13:48:20
合計ジャッジ時間 9,177 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
54,876 KB
testcase_01 AC 79 ms
73,960 KB
testcase_02 AC 76 ms
73,648 KB
testcase_03 AC 83 ms
74,608 KB
testcase_04 AC 78 ms
73,108 KB
testcase_05 AC 78 ms
73,100 KB
testcase_06 AC 80 ms
74,368 KB
testcase_07 AC 81 ms
74,632 KB
testcase_08 AC 78 ms
73,692 KB
testcase_09 AC 80 ms
74,504 KB
testcase_10 AC 78 ms
72,924 KB
testcase_11 AC 325 ms
74,908 KB
testcase_12 AC 299 ms
74,960 KB
testcase_13 AC 441 ms
76,900 KB
testcase_14 AC 328 ms
75,036 KB
testcase_15 AC 328 ms
74,948 KB
testcase_16 AC 302 ms
74,908 KB
testcase_17 AC 433 ms
77,088 KB
testcase_18 AC 323 ms
75,520 KB
testcase_19 AC 330 ms
75,156 KB
testcase_20 AC 301 ms
74,640 KB
testcase_21 AC 439 ms
77,256 KB
testcase_22 AC 328 ms
74,992 KB
testcase_23 AC 330 ms
75,196 KB
testcase_24 AC 300 ms
74,248 KB
testcase_25 AC 439 ms
77,132 KB
testcase_26 AC 329 ms
75,124 KB
testcase_27 AC 326 ms
75,012 KB
testcase_28 AC 305 ms
74,848 KB
testcase_29 AC 437 ms
77,104 KB
testcase_30 AC 327 ms
74,728 KB
testcase_31 AC 46 ms
55,580 KB
testcase_32 AC 43 ms
55,120 KB
testcase_33 AC 106 ms
77,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from math import isqrt,gcd
#==================================================
def is_square(x):
    y=isqrt(x)
    return y*y==x

def solve():
    N=int(input())
    A=list(map(int,input().split()))

    for i in range(N):
        if is_square(A[i]):
            A[i]=1

    for i in range(N):
        for j in range(i+1,N):
            g=gcd(A[i], A[j])
            A[i]//=g
            A[j]//=g

    return all([is_square(a) for a in A])

#==================================================
T=int(input())
for _ in range(T):
    print("Yes" if solve() else "No")
0