結果

問題 No.2074 Product is Square ?
ユーザー titiatitia
提出日時 2022-09-20 03:29:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 424 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 68,352 KB
最終ジャッジ日時 2024-12-22 03:03:46
合計ジャッジ時間 8,154 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,096 KB
testcase_01 AC 62 ms
65,024 KB
testcase_02 AC 62 ms
65,792 KB
testcase_03 AC 59 ms
63,488 KB
testcase_04 AC 58 ms
63,744 KB
testcase_05 AC 57 ms
63,488 KB
testcase_06 AC 57 ms
64,128 KB
testcase_07 AC 57 ms
62,976 KB
testcase_08 AC 55 ms
62,720 KB
testcase_09 AC 59 ms
63,744 KB
testcase_10 AC 57 ms
62,720 KB
testcase_11 AC 270 ms
64,640 KB
testcase_12 AC 250 ms
64,640 KB
testcase_13 AC 416 ms
65,792 KB
testcase_14 AC 269 ms
65,664 KB
testcase_15 AC 280 ms
64,512 KB
testcase_16 AC 257 ms
64,384 KB
testcase_17 AC 414 ms
65,536 KB
testcase_18 AC 282 ms
65,664 KB
testcase_19 AC 265 ms
64,256 KB
testcase_20 AC 250 ms
64,512 KB
testcase_21 AC 411 ms
65,792 KB
testcase_22 AC 278 ms
65,280 KB
testcase_23 AC 274 ms
64,512 KB
testcase_24 AC 259 ms
64,640 KB
testcase_25 AC 424 ms
65,664 KB
testcase_26 AC 279 ms
65,408 KB
testcase_27 AC 269 ms
64,384 KB
testcase_28 AC 254 ms
64,512 KB
testcase_29 AC 404 ms
64,896 KB
testcase_30 AC 282 ms
65,408 KB
testcase_31 AC 43 ms
52,608 KB
testcase_32 AC 40 ms
51,968 KB
testcase_33 AC 72 ms
68,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from math import gcd

T=int(input())
for tests in range(T):
    N=int(input())
    A=list(map(int,input().split()))
    for i in range(N):
        for j in range(i+1,N):
            x=gcd(A[i],A[j])
            if x!=1:
                A[i]//=x
                A[j]//=x
                
    for a in A:
        x=round(a**(1/2))
        if x*x==a:
            pass
        else:
            print("No")
            break
    else:
        print("Yes")
0