結果

問題 No.2074 Product is Square ?
ユーザー t98slidert98slider
提出日時 2022-09-16 22:04:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 933 ms / 2,000 ms
コード長 983 bytes
コンパイル時間 1,483 ms
コンパイル使用メモリ 172,488 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-21 20:23:04
合計ジャッジ時間 9,379 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 6 ms
5,248 KB
testcase_02 AC 6 ms
5,248 KB
testcase_03 AC 6 ms
5,248 KB
testcase_04 AC 6 ms
5,248 KB
testcase_05 AC 6 ms
5,248 KB
testcase_06 AC 6 ms
5,248 KB
testcase_07 AC 6 ms
5,248 KB
testcase_08 AC 6 ms
5,248 KB
testcase_09 AC 6 ms
5,248 KB
testcase_10 AC 5 ms
5,248 KB
testcase_11 AC 92 ms
5,248 KB
testcase_12 AC 203 ms
5,248 KB
testcase_13 AC 909 ms
5,248 KB
testcase_14 AC 173 ms
5,248 KB
testcase_15 AC 87 ms
5,248 KB
testcase_16 AC 206 ms
5,248 KB
testcase_17 AC 908 ms
5,248 KB
testcase_18 AC 172 ms
5,248 KB
testcase_19 AC 87 ms
5,248 KB
testcase_20 AC 215 ms
5,248 KB
testcase_21 AC 913 ms
5,248 KB
testcase_22 AC 174 ms
5,248 KB
testcase_23 AC 88 ms
5,248 KB
testcase_24 AC 206 ms
5,248 KB
testcase_25 AC 933 ms
5,248 KB
testcase_26 AC 179 ms
5,248 KB
testcase_27 AC 92 ms
5,248 KB
testcase_28 AC 216 ms
5,248 KB
testcase_29 AC 923 ms
5,248 KB
testcase_30 AC 176 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 3 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    int T;
    cin >> T;
    //vが平方数であるか
    auto f = [&](ll v){
        if(v == 1)return true;
        ll ng = 1, ok = 1000000000, mid;
        while(ng + 1 < ok){
            mid = (ng + ok) / 2;
            if(mid * mid >= v)ok = mid;
            else ng = mid;
        }
        return (ok * ok == v);
    };
    while(T--){
        int n;
        cin >> n;
        vector<ll> a(n);
        for(auto &&v:a)cin >> v;
        sort(a.begin(), a.end());
        for(int i = 0; i < n; i++){
            for(int j = 0; j < n; j++){
                if(i == j)continue;
                ll g = __gcd(a[i], a[j]);
                a[i] /= g, a[j] /= g;
            }
        }
        bool ans = true;
        for(int i = 0; i < n; i++){
            if(!f(a[i])){
                ans = false;
                break;
            }
        }
        cout << (ans ? "Yes" : "No") << '\n';
    }
}
0