結果
| 問題 | No.3672 Volume 3D |
| コンテスト | |
| ユーザー |
Kude
|
| 提出日時 | 2026-09-05 00:49:12 |
| 言語 | C++23 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 1,787 bytes |
| 記録 | |
| コンパイル時間 | 2,171 ms |
| コンパイル使用メモリ | 357,312 KB |
| 実行使用メモリ | 9,792 KB |
| 最終ジャッジ日時 | 2026-09-05 00:49:17 |
| 合計ジャッジ時間 | 4,508 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge4_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 7 WA * 13 |
ソースコード
#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 d = sqrtl(d2);
auto s = sqrtl((ra + rb + d) * ((d2-ra*ra)/(d+ra) + rb) * ((d2-rb*rb)/(d+rb) + ra) * (ra + (rb*rb-d2)/(rb+d))) / 4;
auto h = 2 * s / d;
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';
}
}
Kude