結果

問題 No.2074 Product is Square ?
ユーザー shobonvipshobonvip
提出日時 2022-09-16 21:48:34
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 439 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 89,388 KB
最終ジャッジ日時 2024-06-01 12:23:37
合計ジャッジ時間 5,647 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
60,440 KB
testcase_01 AC 186 ms
77,316 KB
testcase_02 AC 170 ms
75,684 KB
testcase_03 AC 188 ms
77,240 KB
testcase_04 AC 172 ms
75,912 KB
testcase_05 AC 172 ms
75,956 KB
testcase_06 AC 173 ms
75,816 KB
testcase_07 AC 169 ms
75,896 KB
testcase_08 AC 169 ms
75,708 KB
testcase_09 AC 169 ms
75,900 KB
testcase_10 AC 173 ms
75,672 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def issquared(n):
    suki = n
    kirai = 0
    while suki - kirai > 1:
        targ = (suki + kirai)//2
        if targ ** 2 >= n:
            suki = targ
        else:
            kirai = targ
    if suki ** 2 == n:
        return True
    return False

T = int(input())
for _ in range(T):
	n = int(input())
	a = list(map(int,input().split()))
	d = 1
	for i in range(n):
		d *= a[i]
	if issquared(d):
		print("Yes")
	else:
		print("No")
0