結果

問題 No.983 Convolution
ユーザー ngtkanangtkana
提出日時 2020-02-11 14:11:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 2,207 bytes
コンパイル時間 3,300 ms
コンパイル使用メモリ 168,160 KB
実行使用メモリ 6,548 KB
最終ジャッジ日時 2024-04-08 14:53:10
合計ジャッジ時間 3,284 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,548 KB
testcase_01 AC 2 ms
6,548 KB
testcase_02 AC 2 ms
6,548 KB
testcase_03 AC 14 ms
6,548 KB
testcase_04 AC 14 ms
6,548 KB
testcase_05 AC 11 ms
6,548 KB
testcase_06 AC 16 ms
6,548 KB
testcase_07 AC 15 ms
6,548 KB
testcase_08 AC 5 ms
6,548 KB
testcase_09 AC 6 ms
6,548 KB
testcase_10 AC 4 ms
6,548 KB
testcase_11 AC 5 ms
6,548 KB
testcase_12 AC 16 ms
6,548 KB
testcase_13 AC 7 ms
6,548 KB
testcase_14 AC 8 ms
6,548 KB
testcase_15 AC 13 ms
6,548 KB
testcase_16 AC 10 ms
6,548 KB
testcase_17 AC 15 ms
6,548 KB
testcase_18 AC 4 ms
6,548 KB
testcase_19 AC 11 ms
6,548 KB
testcase_20 AC 17 ms
6,548 KB
testcase_21 AC 16 ms
6,548 KB
testcase_22 AC 5 ms
6,548 KB
testcase_23 AC 10 ms
6,548 KB
testcase_24 AC 4 ms
6,548 KB
testcase_25 AC 4 ms
6,548 KB
testcase_26 AC 7 ms
6,548 KB
testcase_27 AC 6 ms
6,548 KB
testcase_28 AC 13 ms
6,548 KB
testcase_29 AC 24 ms
6,548 KB
testcase_30 AC 13 ms
6,548 KB
testcase_31 AC 8 ms
6,548 KB
testcase_32 AC 13 ms
6,548 KB
testcase_33 AC 2 ms
6,548 KB
testcase_34 AC 2 ms
6,548 KB
testcase_35 AC 2 ms
6,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define DEBUG 1
#include <bits/stdc++.h>
#define loop(n) for (lint ngtkana_is_a_genius = 0; ngtkana_is_a_genius < lint(n); ngtkana_is_a_genius++)
#define rep(i, begin, end) for (lint i = lint(begin); (i) < lint(end); i++)
#define all(v) v.begin(), v.end()
#define rand(l, r) std::uniform_int_distribution<>(l, r)(mt)
using lint = long long;
auto mt = std::mt19937_64(std::random_device{}());
auto cmn = [](auto&& a, auto b){ if (a > b) {a = b; return true;} return false; };
auto cmx = [](auto&& a, auto b){ if (a < b) {a = b; return true;} return false; };
void debug_impl() { std::cerr << std::endl; }
template <typename Head, typename... Tail>
void debug_impl(Head head, Tail... tail) { std::cerr << " " << head; debug_impl(tail...); }
#if DEBUG
#define debug(...)\
    do {\
        std::cerr << std::boolalpha << "[" << #__VA_ARGS__ << "]:";\
        debug_impl(__VA_ARGS__);\
        std::cerr << std::noboolalpha;\
    } while (false)
#else
#define debug(...) {}
#endif

template < typename Container, typename Value = typename Container::value_type, std::enable_if_t<!std::is_same< Container, std::string >::value, std::nullptr_t> = nullptr>
std::istream& operator>> (std::istream& is, Container& v)
    { for (auto & x : v) { is >> x; } return is; }

template < typename Container, typename Value = typename Container::value_type, std::enable_if_t<!std::is_same< Container, std::string >::value, std::nullptr_t> = nullptr >
std::ostream& operator<< (std::ostream& os, Container const& v) {
 os << "{";
    for (auto it = v.begin(); it != v.end(); it++)
        {os << (it != v.begin() ? "," : "") << *it;}
    return os << "}";
}

int main() {
    std::cin.tie(0); std::cin.sync_with_stdio(false);
    int n; std::cin >> n;
    int g=0;
    for(int i=0;i<n;i++){
        int x; std::cin >> x;
        if(x!=-1){
            g=std::__gcd(g,x);
        }
    }
    std::cout <<(g==0?-1LL:(lint)g*g)<< std::endl;
    return 0;
}

/*
足し引きすることで、条件 i&j=k は k `sub` i&j として良いです。
因数分解して、結局 i `sub` j なる j に関する a の和を b_j として、
b の GCD の 2 乗が答えです。
そしてこれは結局 a の GCD の 2 乗です。
*/
0