結果

問題 No.2074 Product is Square ?
ユーザー faculty_of_900faculty_of_900
提出日時 2023-01-14 05:17:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 990 ms / 2,000 ms
コード長 1,912 bytes
コンパイル時間 1,876 ms
コンパイル使用メモリ 172,568 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-07 04:23:17
合計ジャッジ時間 9,901 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 7 ms
5,376 KB
testcase_02 AC 6 ms
5,376 KB
testcase_03 AC 6 ms
5,376 KB
testcase_04 AC 6 ms
5,376 KB
testcase_05 AC 7 ms
5,376 KB
testcase_06 AC 7 ms
5,376 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 7 ms
5,376 KB
testcase_09 AC 7 ms
5,376 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 101 ms
5,376 KB
testcase_12 AC 184 ms
5,376 KB
testcase_13 AC 980 ms
5,376 KB
testcase_14 AC 201 ms
5,376 KB
testcase_15 AC 104 ms
5,376 KB
testcase_16 AC 190 ms
5,376 KB
testcase_17 AC 990 ms
5,376 KB
testcase_18 AC 193 ms
5,376 KB
testcase_19 AC 100 ms
5,376 KB
testcase_20 AC 186 ms
5,376 KB
testcase_21 AC 967 ms
5,376 KB
testcase_22 AC 186 ms
5,376 KB
testcase_23 AC 100 ms
5,376 KB
testcase_24 AC 185 ms
5,376 KB
testcase_25 AC 937 ms
5,376 KB
testcase_26 AC 181 ms
5,376 KB
testcase_27 AC 96 ms
5,376 KB
testcase_28 AC 180 ms
5,376 KB
testcase_29 AC 937 ms
5,376 KB
testcase_30 AC 193 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
//#include <atcoder/all>
//using namespace atcoder;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
typedef long long ll;
#define rep(i,n) for(ll i=0;i<(int)(n);i++)
#define rep1(i,n) for(ll i=1;i<(int)(n);i++)
#define replr(i,l,r) for(ll i=l;i<(int)(r);i++)
#define pl pair<ll,ll>
#define vi vector<int>
#define vii vector<vi>
#define vl vector<ll>
#define vll vector<vl>
#define All(c) (c).begin(), (c).end()
#define Print(x) cout<<(x)<<endl
#define Prints(x) cout<<setprecision(10)<<(x)<<endl
#define Printl(A,n) rep(i,n) {cout<<A[i]<<' ';} cout<<endl;
#define Printll(A,h,w) rep(i,h) {rep(j,w) {cout<<A[i][j]<<' '; } cout<<endl; } cout<<endl;
#define YesNo(Bool) Bool ? Print("Yes") : Print("No")

const ll INF = 1LL << 60;
double PI = 3.14159265358979323846;
ll MOD = 1000000007;
ll mod = 998244353;
vi sorted(vi A) {sort(All(A)); return A;}
//using mint = modint998244353;


/*
bool isSquare(ll x) {
    ll l=0;
    ll r=pow(10,10);
    ll m=(l+r)/2;

    while (r-l>1) {
        if (m*m==x) return true;
        else if (m*m>x) r=m;
        else l=m;
        m=(l+r)/2;
    return false;
    }
}
*/

ll gcd(ll x, ll y) {
	if (y == 0) return x;
	else return gcd(y, x % y);
}


bool isSquare(ll x) {
    ll a=(ll)sqrt(x);
    if (a*a == x) return true;
    else return false;
}




int main() {
    int T; cin>>T;
    rep(t,T) {
        int N; cin>>N;
        vl A(N); rep(i,N) cin>>A[i];

        rep(i,N) {
            rep(j,N) {
                if (i==j) continue;
                ll G = gcd(A[i], A[j]);
                A[i] /= G;
                A[j] /= G;
            }
        }

        bool flag = true;
        rep(i,N) {
            flag = flag && isSquare(A[i]);
        }

        YesNo(flag);




    }


}

0