結果

問題 No.2570 最大最大公約数
ユーザー KumaTachiRenKumaTachiRen
提出日時 2023-12-02 16:01:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,068 ms / 2,000 ms
コード長 1,697 bytes
コンパイル時間 4,494 ms
コンパイル使用メモリ 263,516 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-13 17:14:29
合計ジャッジ時間 30,228 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,068 ms
6,816 KB
testcase_01 AC 1,066 ms
6,816 KB
testcase_02 AC 1,061 ms
6,816 KB
testcase_03 AC 1,063 ms
6,820 KB
testcase_04 AC 1,041 ms
6,816 KB
testcase_05 AC 1,023 ms
6,816 KB
testcase_06 AC 1,036 ms
6,816 KB
testcase_07 AC 1,048 ms
6,816 KB
testcase_08 AC 1,030 ms
6,816 KB
testcase_09 AC 1,029 ms
6,816 KB
testcase_10 AC 1,064 ms
6,816 KB
testcase_11 AC 1,053 ms
6,820 KB
testcase_12 AC 1,049 ms
6,816 KB
testcase_13 AC 1,044 ms
6,820 KB
testcase_14 AC 1,051 ms
6,816 KB
testcase_15 AC 851 ms
6,820 KB
testcase_16 AC 856 ms
6,816 KB
testcase_17 AC 782 ms
6,820 KB
testcase_18 AC 84 ms
6,816 KB
testcase_19 AC 728 ms
6,816 KB
testcase_20 AC 643 ms
6,816 KB
testcase_21 AC 265 ms
6,820 KB
testcase_22 AC 974 ms
6,824 KB
testcase_23 AC 468 ms
6,816 KB
testcase_24 AC 185 ms
6,820 KB
testcase_25 AC 837 ms
6,820 KB
testcase_26 AC 897 ms
6,820 KB
testcase_27 AC 452 ms
6,820 KB
testcase_28 AC 266 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>

using namespace std;
using namespace atcoder;

struct Fast {
  Fast() {
    std::cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cout << setprecision(10);
  }
} fast;

#define all(a) (a).begin(), (a).end()
#define contains(a, x) ((a).find(x) != (a).end())
#define rep(i, a, b) for (int i = (a); i < (int)(b); i++)
#define rrep(i, a, b) for (int i = (int)(b)-1; i >= (a); i--)
#define YN(b) cout << ((b) ? "YES" : "NO") << "\n";
#define Yn(b) cout << ((b) ? "Yes" : "No") << "\n";
#define yn(b) cout << ((b) ? "yes" : "no") << "\n";

template <typename T>
ostream& operator<<(ostream& os, vector<T>& vec) {
  for (int i = 0; i < vec.size(); i++) {
    os << vec[i] << (i + 1 == vec.size() ? "" : " ");
  }
  return os;
}

using ll = long long;
using vb = vector<bool>;
using vvb = vector<vb>;
using vi = vector<int>;
using vvi = vector<vi>;
using vl = vector<ll>;
using vvl = vector<vl>;

using mint = modint998244353;
using vm = vector<mint>;
using vvm = vector<vm>;
inline ostream& operator<<(ostream& os, const mint P) { return os << P.val(); };

void solve() {
  int n, k;
  cin >> n >> k;
  vl a(n);
  rep(i, 0, n) cin >> a[i];

  ll ans = 1;
  for (ll g = 2; g <= 1e6; g++) {
    ll c = 0;
    rep(i, 0, n) {
      ll v = a[i] / g * g;
      c += min(a[i] - v, v + g - a[i]);
    }
    if (c <= k) ans = g;
  }
  rep(i, 0, n) rep(j, -k, k + 1) {
    if (a[i] + j <= 0) continue;
    ll g = a[i] + j;
    ll c = 0;
    rep(i, 0, n) {
      ll v = a[i] / g * g;
      c += min(a[i] - v, v + g - a[i]);
    }
    if (c <= k) ans = max(ans, g);
  }
  cout << ans << "\n";
}

int main() {
  int t = 1;
  // cin >> t;
  while (t--) solve();
}
0