結果

問題 No.2074 Product is Square ?
ユーザー とりゐとりゐ
提出日時 2022-09-16 21:44:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 443 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 73,668 KB
最終ジャッジ日時 2024-06-01 12:17:10
合計ジャッジ時間 7,835 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,828 KB
testcase_01 AC 61 ms
65,676 KB
testcase_02 AC 62 ms
65,608 KB
testcase_03 AC 63 ms
66,332 KB
testcase_04 AC 61 ms
65,576 KB
testcase_05 AC 62 ms
66,576 KB
testcase_06 AC 62 ms
65,512 KB
testcase_07 AC 65 ms
65,900 KB
testcase_08 AC 68 ms
69,072 KB
testcase_09 AC 64 ms
66,372 KB
testcase_10 AC 61 ms
65,728 KB
testcase_11 AC 283 ms
63,608 KB
testcase_12 AC 257 ms
64,592 KB
testcase_13 AC 441 ms
72,924 KB
testcase_14 AC 284 ms
65,936 KB
testcase_15 AC 279 ms
63,780 KB
testcase_16 AC 260 ms
63,892 KB
testcase_17 AC 443 ms
73,668 KB
testcase_18 AC 288 ms
66,092 KB
testcase_19 AC 241 ms
63,588 KB
testcase_20 AC 218 ms
64,300 KB
testcase_21 AC 439 ms
72,308 KB
testcase_22 AC 257 ms
63,960 KB
testcase_23 AC 243 ms
63,200 KB
testcase_24 AC 257 ms
65,000 KB
testcase_25 AC 330 ms
70,304 KB
testcase_26 AC 213 ms
64,296 KB
testcase_27 AC 276 ms
63,364 KB
testcase_28 AC 256 ms
65,296 KB
testcase_29 AC 283 ms
69,044 KB
testcase_30 AC 219 ms
65,204 KB
testcase_31 AC 49 ms
61,684 KB
testcase_32 AC 40 ms
52,604 KB
testcase_33 AC 76 ms
67,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

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

def solve():
  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])
      if g!=1:
        a[i]//=g
        a[j]//=g
    
    if a[i]!=1:
      s=floor_sqrt(a[i])
      if s*s!=a[i]:
        print('No')
        return

  print('Yes')

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