結果

問題 No.2074 Product is Square ?
ユーザー roarisroaris
提出日時 2022-09-16 23:47:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 477 ms / 2,000 ms
コード長 614 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 74,588 KB
最終ジャッジ日時 2024-12-21 23:29:59
合計ジャッジ時間 9,467 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,608 KB
testcase_01 AC 62 ms
67,520 KB
testcase_02 AC 63 ms
67,336 KB
testcase_03 AC 63 ms
67,332 KB
testcase_04 AC 64 ms
67,080 KB
testcase_05 AC 63 ms
67,888 KB
testcase_06 AC 66 ms
67,820 KB
testcase_07 AC 64 ms
67,284 KB
testcase_08 AC 67 ms
69,476 KB
testcase_09 AC 68 ms
68,908 KB
testcase_10 AC 67 ms
68,936 KB
testcase_11 AC 319 ms
68,108 KB
testcase_12 AC 295 ms
68,292 KB
testcase_13 AC 476 ms
74,588 KB
testcase_14 AC 320 ms
68,192 KB
testcase_15 AC 322 ms
67,412 KB
testcase_16 AC 297 ms
67,676 KB
testcase_17 AC 477 ms
73,948 KB
testcase_18 AC 322 ms
68,808 KB
testcase_19 AC 316 ms
65,840 KB
testcase_20 AC 295 ms
66,424 KB
testcase_21 AC 474 ms
73,592 KB
testcase_22 AC 321 ms
67,324 KB
testcase_23 AC 316 ms
67,532 KB
testcase_24 AC 292 ms
67,444 KB
testcase_25 AC 475 ms
72,216 KB
testcase_26 AC 318 ms
66,808 KB
testcase_27 AC 318 ms
67,492 KB
testcase_28 AC 297 ms
67,024 KB
testcase_29 AC 476 ms
72,260 KB
testcase_30 AC 322 ms
68,584 KB
testcase_31 AC 50 ms
62,212 KB
testcase_32 AC 43 ms
54,556 KB
testcase_33 AC 66 ms
70,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *
from math import gcd



for _ in range(int(input())):
    N = int(input())
    A = list(map(int, input().split()))
    
    for i in range(N):
        for j in range(i+1, N):
            G = gcd(A[i], A[j])
            A[i] //= G
            A[j] //= G
    
    for Ai in A:
        l, r = 0, Ai
    
        while l<=r:
            m = (l+r)//2
            
            if m*m<=Ai:
                l = m+1
            else:
                r = m-1
        
        if r*r!=Ai:
            print('No')
            break
    else:
        print('Yes')
0