結果

問題 No.917 Make One With GCD
ユーザー le_panda_noirle_panda_noir
提出日時 2020-05-31 10:47:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 713 bytes
コンパイル時間 937 ms
コンパイル使用メモリ 88,136 KB
実行使用メモリ 16,840 KB
最終ジャッジ日時 2024-11-17 01:46:32
合計ジャッジ時間 39,795 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 2 ms
13,636 KB
testcase_02 AC 2 ms
10,020 KB
testcase_03 AC 2 ms
13,636 KB
testcase_04 AC 2 ms
10,016 KB
testcase_05 AC 102 ms
13,636 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 2 ms
10,020 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 1,133 ms
13,636 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 1,307 ms
6,820 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 141 ms
6,820 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 2 ms
6,820 KB
testcase_21 AC 7 ms
6,816 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 TLE -
testcase_24 AC 13 ms
6,816 KB
testcase_25 TLE -
testcase_26 AC 1 ms
6,816 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 2 ms
6,816 KB
testcase_31 AC 2 ms
6,816 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 AC 1 ms
6,820 KB
testcase_34 AC 2 ms
6,816 KB
testcase_35 AC 2 ms
10,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <numeric>
using namespace std;
using ll = long long;
#define rep(i,n) for(int i=0,_i=(n);i<_i;++i)

int main() {
  int N; cin >> N;

  vector<int> A(N);
  rep(i, N) {
    cin >> A[i];
  }
  int n = N/2;
  map<int, int> m, m2;
  rep(bit, 1 << n) {
    int g = 0;
    rep(i, n)
      if (bit & (1 << i))
        g = gcd(g, A[i]);
    ++m[g];
  }
  rep(bit, 1 << (N-n)) {
    int g = 0;
    rep(i, N-n)
      if (bit & (1 << i))
        g = gcd(g, A[n+i]);
    ++m2[g];
  }
  ll ans = 0;
  for (const auto& e1:m) for (const auto& e2:m2)
    if (gcd(e1.first, e2.first) == 1)
      ans += 1LL * e1.second * e2.second;

  cout << ans << endl;
  return 0;
}
0