結果

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

テストケース

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

ソースコード

diff #

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

using namespace std;
using ll = long long;
using vi = vector<int>;

#define rep(i,n) for(int i=0,_i=(n);i<_i;++i)

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

  vi 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 += e1.second * e2.second;
    }
  }

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