結果

問題 No.3672 Volume 3D
コンテスト
ユーザー Kude
提出日時 2026-09-05 00:32:27
言語 C++23
(gcc 15.3.0 + boost 1.92.0 + ACL)
コンパイル:
g++-15 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 1,755 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,045 ms
コンパイル使用メモリ 358,444 KB
実行使用メモリ 9,908 KB
最終ジャッジ日時 2026-09-05 00:32:38
合計ジャッジ時間 4,586 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge4_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 7 WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include<bits/stdc++.h>
namespace {
#pragma GCC diagnostic ignored "-Wunused-function"
#include<atcoder/all>
#pragma GCC diagnostic warning "-Wunused-function"
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; }
template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; }
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int tt;
  cin >> tt;
  constexpr auto pi = numbers::pi_v<long double>;
  cout << fixed << setprecision(16);
  while (tt--) {
    long double xa, ya, za, ra, xb, yb, zb, rb;
    cin >> xa >> ya >> za >> ra >> xb >> yb >> zb >> rb;
    xa -= xb;
    ya -= yb;
    za -= zb;
    auto d2 = xa * xa + ya * ya + za * za;
    if (d2 >= (ra + rb) * (ra + rb)) {
      cout << 0 << '\n';
      continue;
    }
    if (d2 <= (ra - rb) * (ra - rb)) {
      auto r = min(ra, rb);
      cout << 4 * pi * r * r * r / 3 << '\n';
      continue;
    }
    auto x = sqrtl(d2);
    auto s = sqrtl((ra + rb + x) * (-ra + rb + x) * (ra - rb + x) * (ra + rb - x)) / 4;
    auto h = 2 * s / x;
    auto ta = sqrtl(ra * ra - h * h);
    auto tb = sqrtl(rb * rb - h * h);
    auto ans = 0.0L;
    ans += h * h * h * h / ((ra + ta) * (ra + ta)) * (2 * ra + ta);
    ans += h * h * h * h / ((rb + tb) * (rb + tb)) * (2 * rb + tb);
    ans = ans * pi / 3;
    cout << ans << '\n';
  }
}
0