結果

問題 No.2074 Product is Square ?
ユーザー chineristACchineristAC
提出日時 2022-09-14 09:48:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 484 ms / 2,000 ms
コード長 881 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 70,912 KB
最終ジャッジ日時 2024-12-14 23:56:55
合計ジャッジ時間 9,561 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
55,936 KB
testcase_01 AC 69 ms
67,328 KB
testcase_02 AC 63 ms
66,816 KB
testcase_03 AC 71 ms
66,944 KB
testcase_04 AC 66 ms
66,560 KB
testcase_05 AC 66 ms
66,688 KB
testcase_06 AC 67 ms
66,816 KB
testcase_07 AC 64 ms
66,048 KB
testcase_08 AC 62 ms
65,920 KB
testcase_09 AC 64 ms
66,816 KB
testcase_10 AC 68 ms
65,664 KB
testcase_11 AC 322 ms
67,840 KB
testcase_12 AC 292 ms
67,840 KB
testcase_13 AC 484 ms
70,272 KB
testcase_14 AC 325 ms
67,584 KB
testcase_15 AC 323 ms
67,712 KB
testcase_16 AC 308 ms
67,456 KB
testcase_17 AC 475 ms
70,656 KB
testcase_18 AC 323 ms
68,096 KB
testcase_19 AC 323 ms
67,456 KB
testcase_20 AC 297 ms
67,840 KB
testcase_21 AC 471 ms
70,656 KB
testcase_22 AC 320 ms
67,584 KB
testcase_23 AC 321 ms
67,840 KB
testcase_24 AC 302 ms
67,968 KB
testcase_25 AC 481 ms
68,096 KB
testcase_26 AC 329 ms
68,096 KB
testcase_27 AC 323 ms
67,584 KB
testcase_28 AC 292 ms
67,584 KB
testcase_29 AC 477 ms
68,096 KB
testcase_30 AC 324 ms
68,096 KB
testcase_31 AC 49 ms
56,576 KB
testcase_32 AC 50 ms
55,680 KB
testcase_33 AC 75 ms
70,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import log,gcd

input = lambda :sys.stdin.readline()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

def isqrt(n):
    ok = 0
    ng = n+1
    while ng-ok>1:
        mid = (ok+ng)//2
        if mid*mid <= n:
            ok = mid
        else:
            ng = mid
    return ok

def solve(N,A):
    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 a in A:
        t = int(a**.5)
        for s in range(t-2,t+2):
            if s**2 == a:
                break
        else:
            return False
    return True

for _ in range(int(input())):
    N = int(input())
    A = li()
    print("Yes" if solve(N,A) else "No")
0