結果

問題 No.2074 Product is Square ?
ユーザー rlangevinrlangevin
提出日時 2023-08-04 00:18:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 456 ms / 2,000 ms
コード長 630 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 70,528 KB
最終ジャッジ日時 2024-10-13 21:20:37
合計ジャッジ時間 9,132 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 60 ms
64,640 KB
testcase_02 AC 61 ms
64,896 KB
testcase_03 AC 60 ms
64,640 KB
testcase_04 AC 61 ms
64,640 KB
testcase_05 AC 62 ms
64,640 KB
testcase_06 AC 65 ms
64,896 KB
testcase_07 AC 60 ms
64,640 KB
testcase_08 AC 67 ms
67,712 KB
testcase_09 AC 61 ms
64,768 KB
testcase_10 AC 61 ms
65,152 KB
testcase_11 AC 301 ms
65,664 KB
testcase_12 AC 282 ms
65,664 KB
testcase_13 AC 456 ms
67,200 KB
testcase_14 AC 312 ms
65,920 KB
testcase_15 AC 303 ms
65,408 KB
testcase_16 AC 282 ms
65,792 KB
testcase_17 AC 444 ms
66,944 KB
testcase_18 AC 305 ms
65,792 KB
testcase_19 AC 305 ms
65,664 KB
testcase_20 AC 283 ms
65,792 KB
testcase_21 AC 450 ms
66,688 KB
testcase_22 AC 315 ms
66,432 KB
testcase_23 AC 302 ms
65,792 KB
testcase_24 AC 280 ms
65,792 KB
testcase_25 AC 452 ms
67,200 KB
testcase_26 AC 305 ms
66,048 KB
testcase_27 AC 303 ms
65,792 KB
testcase_28 AC 280 ms
65,792 KB
testcase_29 AC 450 ms
66,816 KB
testcase_30 AC 311 ms
65,920 KB
testcase_31 AC 46 ms
58,112 KB
testcase_32 AC 39 ms
51,584 KB
testcase_33 AC 76 ms
70,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from math import gcd

def is_sqrt(n):
    yes = 0
    no = 10 ** 9 + 5
    while no - yes != 1:
        mid = (yes + no)//2
        if n >= mid * mid:
            yes = mid
        else:
            no = mid
            
    return n == yes * yes
    

T = int(input())
for _ in range(T):
    N = int(input())
    A = list(map(int, input().split()))
    for i in range(N):
        for j in range(i + 1, N):
            g = gcd(A[i], A[j])
            A[i] //= g
            A[j] //= g
            
    ans = 1
    for a in A:
        ans &= is_sqrt(a)
    print("Yes") if ans else print("No")
0