結果

問題 No.2074 Product is Square ?
ユーザー H20H20
提出日時 2022-09-17 15:44:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 131 bytes
コンパイル時間 444 ms
コンパイル使用メモリ 82,712 KB
実行使用メモリ 74,388 KB
最終ジャッジ日時 2024-12-22 00:50:51
合計ジャッジ時間 3,443 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,288 KB
testcase_01 AC 48 ms
60,272 KB
testcase_02 AC 47 ms
60,708 KB
testcase_03 AC 63 ms
70,000 KB
testcase_04 AC 49 ms
61,004 KB
testcase_05 AC 49 ms
60,508 KB
testcase_06 AC 47 ms
60,864 KB
testcase_07 AC 47 ms
60,972 KB
testcase_08 AC 48 ms
60,564 KB
testcase_09 AC 49 ms
61,120 KB
testcase_10 AC 47 ms
60,488 KB
testcase_11 AC 47 ms
67,460 KB
testcase_12 AC 48 ms
66,852 KB
testcase_13 AC 48 ms
68,980 KB
testcase_14 AC 49 ms
68,412 KB
testcase_15 AC 49 ms
67,764 KB
testcase_16 AC 48 ms
67,292 KB
testcase_17 AC 48 ms
68,572 KB
testcase_18 AC 49 ms
68,084 KB
testcase_19 AC 47 ms
67,272 KB
testcase_20 AC 46 ms
67,572 KB
testcase_21 AC 47 ms
69,332 KB
testcase_22 AC 47 ms
68,132 KB
testcase_23 AC 47 ms
67,836 KB
testcase_24 AC 47 ms
67,716 KB
testcase_25 AC 50 ms
68,884 KB
testcase_26 AC 49 ms
68,496 KB
testcase_27 AC 50 ms
67,508 KB
testcase_28 AC 47 ms
67,708 KB
testcase_29 AC 48 ms
68,836 KB
testcase_30 AC 49 ms
68,336 KB
testcase_31 AC 42 ms
53,408 KB
testcase_32 AC 40 ms
52,540 KB
testcase_33 AC 75 ms
74,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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