結果

問題 No.2074 Product is Square ?
ユーザー H20H20
提出日時 2022-09-16 23:11:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 76,272 KB
最終ジャッジ日時 2024-06-01 14:01:12
合計ジャッジ時間 3,429 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 54 ms
62,848 KB
testcase_02 AC 51 ms
62,080 KB
testcase_03 AC 56 ms
62,464 KB
testcase_04 AC 51 ms
62,208 KB
testcase_05 AC 52 ms
62,336 KB
testcase_06 AC 51 ms
62,080 KB
testcase_07 AC 51 ms
62,336 KB
testcase_08 AC 52 ms
62,464 KB
testcase_09 AC 51 ms
62,080 KB
testcase_10 AC 52 ms
61,952 KB
testcase_11 AC 53 ms
62,464 KB
testcase_12 AC 66 ms
65,536 KB
testcase_13 AC 106 ms
76,272 KB
testcase_14 AC 65 ms
67,224 KB
testcase_15 AC 52 ms
62,852 KB
testcase_16 AC 64 ms
65,844 KB
testcase_17 AC 108 ms
75,896 KB
testcase_18 AC 64 ms
66,996 KB
testcase_19 AC 52 ms
63,896 KB
testcase_20 AC 64 ms
67,316 KB
testcase_21 AC 108 ms
75,952 KB
testcase_22 AC 65 ms
66,972 KB
testcase_23 AC 52 ms
62,996 KB
testcase_24 AC 64 ms
65,816 KB
testcase_25 AC 106 ms
76,064 KB
testcase_26 AC 64 ms
67,248 KB
testcase_27 AC 51 ms
62,984 KB
testcase_28 AC 64 ms
67,044 KB
testcase_29 AC 107 ms
76,032 KB
testcase_30 AC 64 ms
67,064 KB
testcase_31 AC 43 ms
54,660 KB
testcase_32 AC 39 ms
53,340 KB
testcase_33 AC 77 ms
74,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
T = int(input())
for _ in range(T):
    N = int(input())
    A = list(map(int, input().split())) 
    v = 1
    for a in A:
        g = math.gcd(v,a)
        a = a//g
        v = v//g
        v = v*a
    if v == math.isqrt(v)**2:
        print('Yes')
    else:
        print('No')

0