結果
問題 | No.605 板挟みの球面 |
ユーザー | xuzijian629 |
提出日時 | 2018-10-29 19:13:06 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 346 bytes |
コンパイル時間 | 1,782 ms |
コンパイル使用メモリ | 193,192 KB |
最終ジャッジ日時 | 2025-01-06 15:03:54 |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 |
ソースコード
#include <bits/stdc++.h> using namespace std; using i64 = int64_t; using vi = vector<i64>; using vvi = vector<vi>; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); cout.setf(ios::fixed); cout.precision(10); double a, b; cin >> a >> b; cout << 4 * acos(-1) / 2 * abs(b - a) << endl; }