結果

問題 No.2074 Product is Square ?
ユーザー flygonflygon
提出日時 2022-09-16 23:29:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 462 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 74,112 KB
最終ジャッジ日時 2024-12-21 23:04:09
合計ジャッジ時間 8,612 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,532 KB
testcase_01 AC 65 ms
67,712 KB
testcase_02 AC 61 ms
65,920 KB
testcase_03 AC 62 ms
66,304 KB
testcase_04 AC 61 ms
66,048 KB
testcase_05 AC 61 ms
65,920 KB
testcase_06 AC 70 ms
69,376 KB
testcase_07 AC 63 ms
66,944 KB
testcase_08 AC 66 ms
66,944 KB
testcase_09 AC 66 ms
68,352 KB
testcase_10 AC 64 ms
67,072 KB
testcase_11 AC 284 ms
64,256 KB
testcase_12 AC 261 ms
64,512 KB
testcase_13 AC 446 ms
69,120 KB
testcase_14 AC 290 ms
65,664 KB
testcase_15 AC 285 ms
64,256 KB
testcase_16 AC 262 ms
64,256 KB
testcase_17 AC 449 ms
69,120 KB
testcase_18 AC 288 ms
65,920 KB
testcase_19 AC 284 ms
64,384 KB
testcase_20 AC 262 ms
64,640 KB
testcase_21 AC 445 ms
69,120 KB
testcase_22 AC 291 ms
65,536 KB
testcase_23 AC 285 ms
64,384 KB
testcase_24 AC 266 ms
64,640 KB
testcase_25 AC 462 ms
69,888 KB
testcase_26 AC 289 ms
65,280 KB
testcase_27 AC 284 ms
64,000 KB
testcase_28 AC 262 ms
64,640 KB
testcase_29 AC 443 ms
69,120 KB
testcase_30 AC 292 ms
65,408 KB
testcase_31 AC 42 ms
53,504 KB
testcase_32 AC 39 ms
52,608 KB
testcase_33 AC 82 ms
74,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd


t = int(input())
for i in range(t):
  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 i == j: continue
      if g == 1: continue
      a[i] //= g
      a[j] //= g
  flg = 1
  for i in range(n):
    if a[i] != 1:
      sq  = int(a[i]**0.5)
      flg2 = 0
      for j in range(max(sq-5,0), sq+5):
        if sq**2 == a[i]:
          flg2 = 1
      if flg2: continue
      flg = 0
  if flg:
    print('Yes')
  else:
    print('No')
0