結果

問題 No.2074 Product is Square ?
ユーザー tassei903tassei903
提出日時 2022-09-22 00:14:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 473 ms / 2,000 ms
コード長 874 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 71,168 KB
最終ジャッジ日時 2024-12-22 04:28:37
合計ジャッジ時間 9,259 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 64 ms
67,072 KB
testcase_02 AC 58 ms
64,512 KB
testcase_03 AC 64 ms
67,072 KB
testcase_04 AC 59 ms
64,896 KB
testcase_05 AC 60 ms
64,640 KB
testcase_06 AC 57 ms
64,000 KB
testcase_07 AC 58 ms
64,000 KB
testcase_08 AC 58 ms
63,744 KB
testcase_09 AC 57 ms
64,000 KB
testcase_10 AC 57 ms
63,616 KB
testcase_11 AC 318 ms
66,048 KB
testcase_12 AC 291 ms
65,664 KB
testcase_13 AC 473 ms
67,584 KB
testcase_14 AC 325 ms
66,176 KB
testcase_15 AC 319 ms
65,536 KB
testcase_16 AC 298 ms
66,304 KB
testcase_17 AC 468 ms
67,200 KB
testcase_18 AC 322 ms
66,304 KB
testcase_19 AC 318 ms
65,408 KB
testcase_20 AC 292 ms
65,664 KB
testcase_21 AC 470 ms
66,944 KB
testcase_22 AC 319 ms
65,920 KB
testcase_23 AC 320 ms
65,664 KB
testcase_24 AC 295 ms
65,664 KB
testcase_25 AC 473 ms
66,304 KB
testcase_26 AC 322 ms
65,664 KB
testcase_27 AC 316 ms
65,792 KB
testcase_28 AC 294 ms
65,792 KB
testcase_29 AC 469 ms
66,048 KB
testcase_30 AC 320 ms
65,408 KB
testcase_31 AC 43 ms
58,880 KB
testcase_32 AC 39 ms
51,968 KB
testcase_33 AC 70 ms
71,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
from math import gcd

def f(x):
    ok = 0
    ng = 10**9+1
    while ng-ok > 1:
        d = ok+ng>>1
        if d*d <= x:
            ok = d
        else:
            ng = d
    return ok*ok == x

for _ in range(ni()):
    n = ni()
    a = na()
    for i in range(n):
        for j in range(i+1,n):
            g = gcd(a[i],a[j])
            a[i] //= g
            a[j] //= g

    ok = 1
    for i in range(n):
        if not f(a[i]):
            ok = 0
            break
    if ok:
        Yes()
    else:
        No()
0