結果

問題 No.2074 Product is Square ?
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-01 16:28:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 486 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 72,600 KB
最終ジャッジ日時 2024-09-01 16:28:39
合計ジャッジ時間 9,273 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,464 KB
testcase_01 AC 56 ms
66,444 KB
testcase_02 AC 58 ms
65,956 KB
testcase_03 AC 58 ms
66,576 KB
testcase_04 AC 60 ms
66,204 KB
testcase_05 AC 58 ms
66,140 KB
testcase_06 AC 64 ms
66,308 KB
testcase_07 AC 57 ms
65,560 KB
testcase_08 AC 58 ms
66,456 KB
testcase_09 AC 58 ms
66,168 KB
testcase_10 AC 59 ms
65,776 KB
testcase_11 AC 310 ms
67,720 KB
testcase_12 AC 285 ms
67,832 KB
testcase_13 AC 486 ms
68,972 KB
testcase_14 AC 311 ms
68,992 KB
testcase_15 AC 307 ms
68,048 KB
testcase_16 AC 279 ms
68,464 KB
testcase_17 AC 459 ms
69,196 KB
testcase_18 AC 314 ms
68,132 KB
testcase_19 AC 313 ms
68,192 KB
testcase_20 AC 314 ms
70,060 KB
testcase_21 AC 450 ms
68,192 KB
testcase_22 AC 315 ms
68,912 KB
testcase_23 AC 338 ms
68,204 KB
testcase_24 AC 287 ms
69,516 KB
testcase_25 AC 457 ms
69,636 KB
testcase_26 AC 318 ms
68,776 KB
testcase_27 AC 313 ms
67,812 KB
testcase_28 AC 280 ms
67,496 KB
testcase_29 AC 456 ms
69,600 KB
testcase_30 AC 341 ms
68,324 KB
testcase_31 AC 44 ms
59,576 KB
testcase_32 AC 37 ms
52,808 KB
testcase_33 AC 74 ms
72,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
from math import gcd
for _ in range(T):
  n=int(input())
  a=list(map(int,input().split()))
  for i in range(n-1):
    for j in range(i+1,n):
      g=gcd(a[i],a[j])
      a[i]//=g
      a[j]//=g
  f=1
  for i in range(n):
    ok=10**10
    ng=0
    while ok-ng>1:
      m=(ok+ng)//2
      if m*m>=a[i]:
        ok=m
      else:
        ng=m
    f&=ok*ok==a[i]
  print(["No","Yes"][f])
0