結果

問題 No.2074 Product is Square ?
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-09-17 10:20:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 447 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 73,472 KB
最終ジャッジ日時 2024-06-01 14:58:05
合計ジャッジ時間 7,459 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,736 KB
testcase_01 AC 66 ms
66,432 KB
testcase_02 AC 63 ms
66,688 KB
testcase_03 AC 61 ms
66,304 KB
testcase_04 AC 62 ms
67,200 KB
testcase_05 AC 59 ms
65,664 KB
testcase_06 AC 60 ms
65,792 KB
testcase_07 AC 64 ms
66,176 KB
testcase_08 AC 61 ms
66,432 KB
testcase_09 AC 59 ms
64,768 KB
testcase_10 AC 61 ms
66,048 KB
testcase_11 AC 175 ms
66,944 KB
testcase_12 AC 241 ms
67,072 KB
testcase_13 AC 447 ms
67,712 KB
testcase_14 AC 238 ms
67,584 KB
testcase_15 AC 178 ms
66,944 KB
testcase_16 AC 240 ms
66,944 KB
testcase_17 AC 444 ms
67,840 KB
testcase_18 AC 236 ms
67,840 KB
testcase_19 AC 173 ms
65,920 KB
testcase_20 AC 237 ms
65,536 KB
testcase_21 AC 445 ms
67,968 KB
testcase_22 AC 233 ms
66,560 KB
testcase_23 AC 175 ms
66,688 KB
testcase_24 AC 242 ms
66,944 KB
testcase_25 AC 442 ms
65,792 KB
testcase_26 AC 230 ms
65,576 KB
testcase_27 AC 177 ms
67,200 KB
testcase_28 AC 242 ms
67,584 KB
testcase_29 AC 442 ms
65,792 KB
testcase_30 AC 233 ms
65,408 KB
testcase_31 AC 41 ms
53,504 KB
testcase_32 AC 41 ms
52,480 KB
testcase_33 AC 76 ms
73,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
def solve():
    n = int(input())
    A = list(map(int,input().split()))
    for i in range(n):
        for j in range(i):
            g = math.gcd(A[i],A[j])
            A[i] //= g
            A[j] //= g

    
    for a in A:
        square = int(a**0.5)
        ok = 0
        for i in range(max(0,square-1),square+2):
            if i**2 == a:
                ok = 1
        if ok == 0:
            return "No"

    return "Yes"

t = int(input())
for _ in range(t):
    print(solve())
0