結果

問題 No.2074 Product is Square ?
ユーザー prussian_coderprussian_coder
提出日時 2022-09-18 15:38:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 464 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 75,136 KB
最終ジャッジ日時 2024-06-01 15:33:06
合計ジャッジ時間 9,109 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,736 KB
testcase_01 AC 60 ms
64,768 KB
testcase_02 AC 59 ms
64,640 KB
testcase_03 AC 71 ms
70,912 KB
testcase_04 AC 57 ms
64,256 KB
testcase_05 AC 59 ms
64,000 KB
testcase_06 AC 59 ms
64,512 KB
testcase_07 AC 61 ms
65,024 KB
testcase_08 AC 57 ms
63,744 KB
testcase_09 AC 64 ms
64,512 KB
testcase_10 AC 58 ms
63,872 KB
testcase_11 AC 309 ms
64,768 KB
testcase_12 AC 291 ms
64,640 KB
testcase_13 AC 462 ms
64,640 KB
testcase_14 AC 311 ms
64,384 KB
testcase_15 AC 313 ms
64,384 KB
testcase_16 AC 291 ms
64,896 KB
testcase_17 AC 464 ms
64,640 KB
testcase_18 AC 312 ms
64,688 KB
testcase_19 AC 309 ms
64,384 KB
testcase_20 AC 298 ms
64,384 KB
testcase_21 AC 460 ms
64,384 KB
testcase_22 AC 312 ms
64,768 KB
testcase_23 AC 315 ms
64,640 KB
testcase_24 AC 291 ms
64,256 KB
testcase_25 AC 460 ms
64,896 KB
testcase_26 AC 312 ms
65,152 KB
testcase_27 AC 310 ms
64,384 KB
testcase_28 AC 292 ms
64,768 KB
testcase_29 AC 461 ms
64,896 KB
testcase_30 AC 313 ms
64,384 KB
testcase_31 AC 43 ms
53,760 KB
testcase_32 AC 39 ms
52,224 KB
testcase_33 AC 83 ms
75,136 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=int((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