結果

問題 No.2074 Product is Square ?
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-09-17 10:20:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 452 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 554 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 73,772 KB
最終ジャッジ日時 2024-12-22 00:29:47
合計ジャッジ時間 7,722 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,124 KB
testcase_01 AC 65 ms
67,056 KB
testcase_02 AC 66 ms
68,140 KB
testcase_03 AC 64 ms
67,340 KB
testcase_04 AC 63 ms
67,604 KB
testcase_05 AC 60 ms
65,944 KB
testcase_06 AC 61 ms
66,976 KB
testcase_07 AC 62 ms
66,676 KB
testcase_08 AC 61 ms
67,556 KB
testcase_09 AC 59 ms
65,700 KB
testcase_10 AC 60 ms
66,064 KB
testcase_11 AC 177 ms
68,236 KB
testcase_12 AC 242 ms
67,388 KB
testcase_13 AC 452 ms
68,676 KB
testcase_14 AC 242 ms
67,980 KB
testcase_15 AC 178 ms
67,188 KB
testcase_16 AC 245 ms
68,024 KB
testcase_17 AC 451 ms
67,332 KB
testcase_18 AC 239 ms
67,756 KB
testcase_19 AC 175 ms
66,080 KB
testcase_20 AC 242 ms
67,000 KB
testcase_21 AC 452 ms
67,704 KB
testcase_22 AC 239 ms
67,520 KB
testcase_23 AC 176 ms
67,292 KB
testcase_24 AC 245 ms
67,276 KB
testcase_25 AC 449 ms
66,340 KB
testcase_26 AC 235 ms
66,200 KB
testcase_27 AC 176 ms
67,412 KB
testcase_28 AC 246 ms
67,724 KB
testcase_29 AC 446 ms
67,132 KB
testcase_30 AC 237 ms
66,300 KB
testcase_31 AC 42 ms
53,596 KB
testcase_32 AC 40 ms
54,200 KB
testcase_33 AC 80 ms
73,772 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