結果

問題 No.2882 Comeback
ユーザー kusaf_kusaf_
提出日時 2024-09-12 11:25:45
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 1,108 bytes
コンパイル時間 3,424 ms
コンパイル使用メモリ 265,544 KB
実行使用メモリ 10,804 KB
最終ジャッジ日時 2024-09-12 11:25:54
合計ジャッジ時間 8,694 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 7 ms
6,944 KB
testcase_06 AC 7 ms
6,940 KB
testcase_07 AC 7 ms
6,940 KB
testcase_08 AC 7 ms
6,944 KB
testcase_09 AC 7 ms
6,948 KB
testcase_10 AC 202 ms
10,064 KB
testcase_11 AC 212 ms
10,332 KB
testcase_12 AC 207 ms
10,748 KB
testcase_13 AC 217 ms
10,764 KB
testcase_14 AC 168 ms
10,096 KB
testcase_15 AC 209 ms
10,336 KB
testcase_16 AC 189 ms
10,460 KB
testcase_17 AC 188 ms
9,752 KB
testcase_18 AC 239 ms
10,428 KB
testcase_19 AC 206 ms
10,208 KB
testcase_20 AC 344 ms
10,804 KB
testcase_21 AC 348 ms
10,800 KB
testcase_22 AC 344 ms
10,800 KB
testcase_23 AC 346 ms
10,668 KB
testcase_24 AC 336 ms
10,604 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 27 ms
8,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

vector<tuple<ll, ll, ll>> Enum_floor(ll n) {
  vector<tuple<ll, ll, ll>> ret;
  ll l = 1;
  while(l <= n) {
    ll q = n / l, r = n / q + 1;
    ret.push_back({l, r, q});
    l = r;
  }
  return ret;
}

auto ceil(auto a, auto b) {
  assert(b != 0);
  if(b < 0) { a = -a, b = -b; }
  return a / b + (a % b > 0);
}

void solve() {
  ll A, B;
  cin >> A >> B;

  auto a = Enum_floor(A), b = Enum_floor(B);
  vector<ll> v;
  for(auto &[l, r, q] : a) {
    v.emplace_back(l);
    v.emplace_back(r);
  }
  for(auto &[l, r, q] : b) {
    v.emplace_back(l);
    v.emplace_back(r);
  }

  ranges::sort(v);
  v.erase(unique(v.begin(), v.end()), v.end());

  ll N = v.size();
  vector<ll> s(N - 1, 0);
  for(ll i = 0; i < N - 1; i++) {
    s[i] -= A / v[i];
    s[i] += B / v[i];
  }

  ll ans = 0;
  for(ll i = 0; i < N - 1; i++) {
    if(s[i]) { ans += max(v[i + 1] - max(v[i], ceil(B - A, s[i])), 0LL); }
  }

  cout << ans << "\n";
}

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  ll t;
  cin >> t;
  while(t--) { solve(); }
}
0