結果

問題 No.2074 Product is Square ?
ユーザー flygonflygon
提出日時 2022-09-16 22:58:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 303 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,832 KB
実行使用メモリ 77,000 KB
最終ジャッジ日時 2024-06-01 13:55:33
合計ジャッジ時間 3,385 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,884 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 51 ms
63,336 KB
testcase_12 AC 61 ms
66,692 KB
testcase_13 RE -
testcase_14 WA -
testcase_15 AC 51 ms
62,676 KB
testcase_16 AC 64 ms
65,952 KB
testcase_17 RE -
testcase_18 WA -
testcase_19 AC 51 ms
63,840 KB
testcase_20 AC 62 ms
67,056 KB
testcase_21 RE -
testcase_22 WA -
testcase_23 AC 50 ms
63,132 KB
testcase_24 AC 62 ms
66,564 KB
testcase_25 RE -
testcase_26 WA -
testcase_27 AC 50 ms
62,852 KB
testcase_28 AC 63 ms
67,264 KB
testcase_29 RE -
testcase_30 WA -
testcase_31 AC 41 ms
53,880 KB
testcase_32 AC 38 ms
52,736 KB
testcase_33 AC 75 ms
73,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
t = int(input())
for i in range(t):
  n = int(input())
  a = list(map(int,input().split()))
  now = 1
  for i in range(n):
    g = gcd(now, a[i])
    now = (now//g)*(a[i]//g)
  sq = int(now**0.5)
  if sq**2 == now:
    now = 1
  if now == 1:
    print('Yes')
  else:
    print('No')
0