結果

問題 No.2074 Product is Square ?
ユーザー roarisroaris
提出日時 2022-09-16 23:47:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 480 ms / 2,000 ms
コード長 614 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 73,344 KB
最終ジャッジ日時 2024-06-01 14:29:55
合計ジャッジ時間 9,284 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,144 KB
testcase_01 AC 65 ms
66,688 KB
testcase_02 AC 66 ms
66,816 KB
testcase_03 AC 69 ms
66,688 KB
testcase_04 AC 66 ms
66,816 KB
testcase_05 AC 69 ms
66,304 KB
testcase_06 AC 68 ms
67,072 KB
testcase_07 AC 65 ms
66,304 KB
testcase_08 AC 71 ms
68,864 KB
testcase_09 AC 70 ms
68,608 KB
testcase_10 AC 73 ms
68,480 KB
testcase_11 AC 320 ms
67,328 KB
testcase_12 AC 295 ms
67,328 KB
testcase_13 AC 473 ms
73,344 KB
testcase_14 AC 326 ms
67,584 KB
testcase_15 AC 325 ms
67,072 KB
testcase_16 AC 296 ms
67,200 KB
testcase_17 AC 480 ms
72,960 KB
testcase_18 AC 325 ms
68,224 KB
testcase_19 AC 315 ms
65,664 KB
testcase_20 AC 291 ms
66,048 KB
testcase_21 AC 472 ms
73,088 KB
testcase_22 AC 324 ms
67,072 KB
testcase_23 AC 313 ms
66,048 KB
testcase_24 AC 294 ms
66,816 KB
testcase_25 AC 472 ms
71,552 KB
testcase_26 AC 317 ms
66,304 KB
testcase_27 AC 316 ms
66,816 KB
testcase_28 AC 294 ms
67,200 KB
testcase_29 AC 473 ms
71,424 KB
testcase_30 AC 320 ms
66,560 KB
testcase_31 AC 54 ms
61,824 KB
testcase_32 AC 44 ms
53,948 KB
testcase_33 AC 69 ms
69,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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



for _ in range(int(input())):
    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
    
    for Ai in A:
        l, r = 0, Ai
    
        while l<=r:
            m = (l+r)//2
            
            if m*m<=Ai:
                l = m+1
            else:
                r = m-1
        
        if r*r!=Ai:
            print('No')
            break
    else:
        print('Yes')
0