結果

問題 No.2074 Product is Square ?
ユーザー prussian_coderprussian_coder
提出日時 2022-09-18 15:36:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 355 bytes
コンパイル時間 2,370 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 74,980 KB
最終ジャッジ日時 2024-12-22 01:20:07
合計ジャッジ時間 9,454 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,396 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 314 ms
65,336 KB
testcase_12 AC 292 ms
65,096 KB
testcase_13 WA -
testcase_14 AC 314 ms
65,364 KB
testcase_15 WA -
testcase_16 AC 297 ms
65,424 KB
testcase_17 WA -
testcase_18 AC 316 ms
65,736 KB
testcase_19 AC 312 ms
65,040 KB
testcase_20 AC 293 ms
64,348 KB
testcase_21 WA -
testcase_22 AC 315 ms
66,516 KB
testcase_23 AC 318 ms
65,676 KB
testcase_24 AC 298 ms
65,808 KB
testcase_25 WA -
testcase_26 AC 314 ms
64,500 KB
testcase_27 AC 313 ms
65,504 KB
testcase_28 AC 294 ms
64,820 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 40 ms
53,072 KB
testcase_33 AC 85 ms
74,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
import math
for _ in range(T):
	N=int(input())
	A=[int(x) for x in input().split()]
	A.sort()
	for i in range(N):
		for j in range(i+1,N):
			a=math.gcd(A[i],A[j])
			A[i]//=a
			A[j]//=a
	flag=True		
	for i in range(N):
		t=(A[i])**0.5
		if t**2!=A[i] and (t+1)**2!=A[i]:
			print("No")
			flag=False
			break
	if flag:
		print("Yes")
	
	
0