結果

問題 No.917 Make One With GCD
ユーザー MisterMister
提出日時 2020-04-26 13:20:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 934 bytes
コンパイル時間 901 ms
コンパイル使用メモリ 88,312 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-11-17 03:15:26
合計ジャッジ時間 40,141 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 2 ms
10,624 KB
testcase_02 AC 2 ms
8,448 KB
testcase_03 AC 2 ms
10,020 KB
testcase_04 AC 2 ms
8,448 KB
testcase_05 AC 118 ms
10,624 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 2 ms
8,320 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 1,221 ms
10,624 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 1,304 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 157 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 8 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 TLE -
testcase_24 AC 14 ms
5,248 KB
testcase_25 TLE -
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <numeric>
#include <vector>
#include <map>

using lint = long long;

std::map<int, lint> count(int n) {
    std::vector<int> xs(n);
    for (auto& x : xs) std::cin >> x;

    std::map<int, lint> ret;
    for (int b = 0; b < (1 << n); ++b) {
        lint g = 0;
        for (int i = 0; i < n; ++i) {
            if ((b >> i) & 1) g = std::gcd(g, xs[i]);
        }

        if (!ret.count(g)) ret[g] = 0;
        ++ret[g];
    }

    return ret;
}

void solve() {
    int n;
    std::cin >> n;

    auto fore = count(n / 2),
         back = count(n - n / 2);

    lint ans = 0;
    for (auto p : fore) {
        for (auto q : back) {
            if (std::gcd(p.first, q.first) == 1) {
                ans += p.second * q.second;
            }
        }
    }

    std::cout << ans << std::endl;
}

int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    solve();

    return 0;
}
0