結果

問題 No.2074 Product is Square ?
ユーザー H20H20
提出日時 2022-09-16 23:30:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 151 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 73,300 KB
最終ジャッジ日時 2024-12-21 23:04:19
合計ジャッジ時間 2,949 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,964 KB
testcase_01 AC 47 ms
61,008 KB
testcase_02 AC 46 ms
61,764 KB
testcase_03 AC 48 ms
62,256 KB
testcase_04 AC 48 ms
61,408 KB
testcase_05 AC 47 ms
62,292 KB
testcase_06 AC 48 ms
61,620 KB
testcase_07 AC 48 ms
63,208 KB
testcase_08 AC 48 ms
60,948 KB
testcase_09 AC 48 ms
61,760 KB
testcase_10 AC 49 ms
62,964 KB
testcase_11 AC 47 ms
68,756 KB
testcase_12 AC 48 ms
67,784 KB
testcase_13 AC 47 ms
70,840 KB
testcase_14 AC 47 ms
69,292 KB
testcase_15 AC 48 ms
68,788 KB
testcase_16 AC 47 ms
68,324 KB
testcase_17 AC 48 ms
69,840 KB
testcase_18 AC 48 ms
69,296 KB
testcase_19 AC 47 ms
67,980 KB
testcase_20 AC 47 ms
68,248 KB
testcase_21 AC 47 ms
70,680 KB
testcase_22 AC 48 ms
69,052 KB
testcase_23 AC 47 ms
68,040 KB
testcase_24 AC 47 ms
68,228 KB
testcase_25 AC 48 ms
70,008 KB
testcase_26 AC 49 ms
69,404 KB
testcase_27 AC 47 ms
69,548 KB
testcase_28 AC 48 ms
69,092 KB
testcase_29 AC 47 ms
70,696 KB
testcase_30 AC 48 ms
69,844 KB
testcase_31 AC 42 ms
53,908 KB
testcase_32 AC 37 ms
53,300 KB
testcase_33 AC 78 ms
73,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
for v in [1]*int(input()):
    input()
    for a in list(map(int,input().split())):
        v*=a
    print('YNeos'[v!=math.isqrt(v)**2::2])
0