結果

問題 No.2074 Product is Square ?
ユーザー qibqib
提出日時 2023-01-11 18:56:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 478 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-12-22 12:44:40
合計ジャッジ時間 9,265 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,888 KB
testcase_01 AC 65 ms
66,944 KB
testcase_02 AC 66 ms
66,944 KB
testcase_03 AC 65 ms
66,432 KB
testcase_04 AC 66 ms
67,072 KB
testcase_05 AC 66 ms
67,200 KB
testcase_06 AC 66 ms
65,536 KB
testcase_07 AC 63 ms
65,920 KB
testcase_08 AC 64 ms
65,664 KB
testcase_09 AC 64 ms
65,536 KB
testcase_10 AC 64 ms
65,792 KB
testcase_11 AC 322 ms
68,224 KB
testcase_12 AC 298 ms
67,840 KB
testcase_13 AC 478 ms
70,656 KB
testcase_14 AC 324 ms
67,968 KB
testcase_15 AC 322 ms
67,840 KB
testcase_16 AC 298 ms
68,096 KB
testcase_17 AC 475 ms
70,912 KB
testcase_18 AC 325 ms
68,224 KB
testcase_19 AC 320 ms
67,840 KB
testcase_20 AC 297 ms
67,456 KB
testcase_21 AC 476 ms
70,528 KB
testcase_22 AC 336 ms
68,096 KB
testcase_23 AC 321 ms
67,840 KB
testcase_24 AC 300 ms
67,456 KB
testcase_25 AC 472 ms
69,888 KB
testcase_26 AC 324 ms
66,560 KB
testcase_27 AC 318 ms
67,840 KB
testcase_28 AC 296 ms
67,840 KB
testcase_29 AC 475 ms
68,352 KB
testcase_30 AC 330 ms
67,584 KB
testcase_31 AC 52 ms
61,056 KB
testcase_32 AC 42 ms
53,248 KB
testcase_33 AC 97 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import math

def is_square(x):
  ok = 10 ** 9
  ng = 0
  while abs(ok - ng) > 1:
    mid = (ok + ng) // 2
    if mid * mid >= x:
      ok = mid
    else:
      ng = mid

  return ok * ok == x

t = int(input())
for _ in range(t):
  n = int(input())
  a = list(map(int, input().split()))
  for i in range(n - 1):
    for j in range(i + 1, n):
      g = math.gcd(a[i], a[j])
      a[i] //= g
      a[j] //= g

  if all(is_square(x) for x in a):
    print("Yes")
  else:
    print("No")
0