結果

問題 No.2074 Product is Square ?
ユーザー とりゐとりゐ
提出日時 2022-09-16 21:44:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 480 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 756 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 72,220 KB
最終ジャッジ日時 2024-12-21 18:52:35
合計ジャッジ時間 8,574 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,344 KB
testcase_01 AC 69 ms
65,288 KB
testcase_02 AC 68 ms
65,252 KB
testcase_03 AC 67 ms
65,788 KB
testcase_04 AC 70 ms
65,624 KB
testcase_05 AC 68 ms
65,360 KB
testcase_06 AC 68 ms
65,468 KB
testcase_07 AC 66 ms
65,572 KB
testcase_08 AC 69 ms
67,664 KB
testcase_09 AC 73 ms
66,624 KB
testcase_10 AC 66 ms
65,456 KB
testcase_11 AC 293 ms
64,084 KB
testcase_12 AC 275 ms
63,436 KB
testcase_13 AC 480 ms
72,220 KB
testcase_14 AC 301 ms
64,180 KB
testcase_15 AC 297 ms
62,976 KB
testcase_16 AC 280 ms
63,488 KB
testcase_17 AC 466 ms
72,192 KB
testcase_18 AC 298 ms
64,232 KB
testcase_19 AC 260 ms
63,356 KB
testcase_20 AC 237 ms
63,416 KB
testcase_21 AC 476 ms
72,056 KB
testcase_22 AC 278 ms
64,080 KB
testcase_23 AC 260 ms
62,960 KB
testcase_24 AC 271 ms
63,448 KB
testcase_25 AC 354 ms
69,776 KB
testcase_26 AC 235 ms
63,012 KB
testcase_27 AC 308 ms
63,496 KB
testcase_28 AC 275 ms
63,396 KB
testcase_29 AC 309 ms
68,848 KB
testcase_30 AC 239 ms
63,396 KB
testcase_31 AC 55 ms
60,364 KB
testcase_32 AC 43 ms
53,244 KB
testcase_33 AC 68 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