結果
問題 | No.2074 Product is Square ? |
ユーザー | asaringo |
提出日時 | 2022-09-17 01:23:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,078 bytes |
コンパイル時間 | 2,066 ms |
コンパイル使用メモリ | 205,644 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-01 14:45:57 |
合計ジャッジ時間 | 6,663 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std ; #define fast_input_output ios::sync_with_stdio(false); cin.tie(nullptr); typedef long long ll ; typedef long double ld ; typedef pair<ll,ll> P ; typedef tuple<ll,ll,ll> TP ; #define chmin(a,b) a = min(a,b) #define chmax(a,b) a = max(a,b) #define bit_count(x) __builtin_popcountll(x) #define gcd(a,b) __gcd(a,b) #define lcm(a,b) a / gcd(a,b) * b #define rep(i,n) for(int i = 0 ; i < n ; i++) #define rrep(i,a,b) for(int i = a ; i < b ; i++) #define endl "\n" int n ; void solve(){ cin >> n; vector<int> A(n); rep(i,n) cin >> A[i]; sort(A.begin(),A.end()); rep(i,n){ rep(j,n){ if(i == j) continue; ll g = gcd(A[i],A[j]); A[i] /= g; A[j] /= g; } } rep(i,n){ ll s = sqrt(A[i]); // cout << s << " " << A[i] << endl; if(s * s != A[i]) { cout << "No" << endl; return; } } cout << "Yes" << endl; } int main(){ fast_input_output int t; cin >> t; rep(i,t) solve(); }