結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,936 KB
testcase_01 AC 65 ms
67,968 KB
testcase_02 AC 62 ms
66,432 KB
testcase_03 AC 62 ms
66,560 KB
testcase_04 AC 62 ms
66,688 KB
testcase_05 AC 61 ms
66,944 KB
testcase_06 AC 62 ms
67,200 KB
testcase_07 AC 60 ms
66,432 KB
testcase_08 AC 61 ms
66,176 KB
testcase_09 AC 64 ms
67,200 KB
testcase_10 AC 61 ms
65,792 KB
testcase_11 AC 328 ms
67,456 KB
testcase_12 AC 292 ms
67,584 KB
testcase_13 AC 468 ms
70,144 KB
testcase_14 AC 318 ms
67,712 KB
testcase_15 AC 316 ms
67,712 KB
testcase_16 AC 292 ms
67,840 KB
testcase_17 AC 470 ms
70,272 KB
testcase_18 AC 323 ms
68,072 KB
testcase_19 AC 315 ms
67,968 KB
testcase_20 AC 292 ms
67,712 KB
testcase_21 AC 469 ms
70,528 KB
testcase_22 AC 323 ms
67,840 KB
testcase_23 AC 317 ms
67,968 KB
testcase_24 AC 293 ms
67,712 KB
testcase_25 AC 469 ms
68,608 KB
testcase_26 AC 322 ms
67,840 KB
testcase_27 AC 318 ms
67,584 KB
testcase_28 AC 294 ms
67,968 KB
testcase_29 AC 466 ms
68,352 KB
testcase_30 AC 320 ms
67,968 KB
testcase_31 AC 48 ms
56,576 KB
testcase_32 AC 49 ms
55,680 KB
testcase_33 AC 71 ms
70,784 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