結果

問題 No.2074 Product is Square ?
ユーザー titiatitia
提出日時 2022-09-20 03:29:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 432 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 69,052 KB
最終ジャッジ日時 2024-06-01 16:41:11
合計ジャッジ時間 8,304 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,452 KB
testcase_01 AC 59 ms
67,048 KB
testcase_02 AC 58 ms
65,864 KB
testcase_03 AC 54 ms
65,192 KB
testcase_04 AC 55 ms
65,512 KB
testcase_05 AC 56 ms
65,548 KB
testcase_06 AC 57 ms
65,364 KB
testcase_07 AC 54 ms
63,860 KB
testcase_08 AC 54 ms
63,436 KB
testcase_09 AC 57 ms
64,952 KB
testcase_10 AC 54 ms
64,112 KB
testcase_11 AC 281 ms
65,296 KB
testcase_12 AC 260 ms
65,076 KB
testcase_13 AC 427 ms
67,144 KB
testcase_14 AC 284 ms
66,048 KB
testcase_15 AC 282 ms
65,144 KB
testcase_16 AC 255 ms
65,408 KB
testcase_17 AC 428 ms
66,604 KB
testcase_18 AC 282 ms
66,740 KB
testcase_19 AC 280 ms
65,376 KB
testcase_20 AC 261 ms
64,820 KB
testcase_21 AC 422 ms
67,676 KB
testcase_22 AC 281 ms
67,148 KB
testcase_23 AC 281 ms
66,272 KB
testcase_24 AC 258 ms
65,628 KB
testcase_25 AC 432 ms
67,200 KB
testcase_26 AC 286 ms
66,208 KB
testcase_27 AC 281 ms
64,856 KB
testcase_28 AC 260 ms
65,120 KB
testcase_29 AC 428 ms
65,868 KB
testcase_30 AC 287 ms
66,488 KB
testcase_31 AC 39 ms
53,952 KB
testcase_32 AC 37 ms
52,628 KB
testcase_33 AC 62 ms
69,052 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