結果

問題 No.983 Convolution
ユーザー baLoon8128baLoon8128
提出日時 2022-04-24 11:00:38
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 625 bytes
コンパイル時間 3,875 ms
コンパイル使用メモリ 228,164 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-25 21:16:52
合計ジャッジ時間 6,334 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll = long long;
using vi = vector<int>;
using vvi = vector<vector<int>>;
using pii = pair<int, int>;
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
#define repr(i, n) for (int i = (int)(n - 1); i >= 0; --i)

int gcd(int x, int y) {
    if (x > y) swap(x, y);
    return x == 0 ? y : gcd(y % x, x);
}
int main() {
    int n;
    cin >> n;
    vi a(n);
    rep(i, n) cin >> a[i];
    int r = 0;
    rep(i, n) {
        if (a[i] >= 0) r = gcd(r, a[i]);
    }
    cout << (r == 0 ? -1 : (ll)r * r) << endl;
    return 0;
}
0