結果

問題 No.2074 Product is Square ?
ユーザー 👑 rin204rin204
提出日時 2022-09-16 21:37:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 434 ms / 2,000 ms
コード長 610 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 67,456 KB
最終ジャッジ日時 2024-12-21 18:39:43
合計ジャッジ時間 7,316 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 51 ms
63,104 KB
testcase_02 AC 54 ms
64,512 KB
testcase_03 AC 51 ms
63,488 KB
testcase_04 AC 53 ms
63,616 KB
testcase_05 AC 49 ms
62,080 KB
testcase_06 AC 55 ms
63,360 KB
testcase_07 AC 49 ms
61,952 KB
testcase_08 AC 50 ms
62,848 KB
testcase_09 AC 52 ms
63,616 KB
testcase_10 AC 47 ms
61,696 KB
testcase_11 AC 232 ms
64,000 KB
testcase_12 AC 253 ms
62,720 KB
testcase_13 AC 417 ms
63,616 KB
testcase_14 AC 281 ms
62,848 KB
testcase_15 AC 249 ms
63,488 KB
testcase_16 AC 251 ms
62,720 KB
testcase_17 AC 434 ms
63,360 KB
testcase_18 AC 287 ms
63,488 KB
testcase_19 AC 202 ms
62,976 KB
testcase_20 AC 209 ms
62,464 KB
testcase_21 AC 407 ms
63,744 KB
testcase_22 AC 241 ms
64,128 KB
testcase_23 AC 197 ms
63,616 KB
testcase_24 AC 247 ms
62,464 KB
testcase_25 AC 308 ms
63,616 KB
testcase_26 AC 198 ms
62,208 KB
testcase_27 AC 231 ms
62,720 KB
testcase_28 AC 250 ms
62,336 KB
testcase_29 AC 267 ms
62,720 KB
testcase_30 AC 209 ms
63,488 KB
testcase_31 AC 40 ms
53,120 KB
testcase_32 AC 36 ms
51,968 KB
testcase_33 AC 63 ms
67,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

def solve():
    n = int(input())
    A = list(map(int, input().split()))
    for i in range(n):
        if A[i] == 1:
            continue
        for j in range(i + 1, n):
            g = gcd(A[i], A[j])
            A[i] //= g
            A[j] //= g
        
        if A[i] != 1:
            x = int(A[i] ** 0.5)
            while x * x >= A[i]:
                x -= 1
            while x * x < A[i]:
                x += 1
            if x * x != A[i]:
                print("No")
                return
            A[i] = 1
    print("Yes")

for _ in range(int(input())):
    solve()
0