結果
問題 | No.1381 Simple Geometry 1 |
ユーザー | maple116 |
提出日時 | 2021-02-07 20:40:38 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,835 bytes |
コンパイル時間 | 2,070 ms |
コンパイル使用メモリ | 201,000 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-04 13:43:37 |
合計ジャッジ時間 | 2,789 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> //#include <boost/multiprecision/cpp_int.hpp> using namespace std; //g++ hoge.cpp (-std=c++17) -I . で実行 #pragma GCC target("avx") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") typedef long long ll; typedef pair<ll,ll> prl; typedef vector<ll> vcl; typedef map<ll,ll> mapl; typedef unordered_map<ll,ll> umap; #define pb push_back #define all(v) v.begin(), v.end() #define rep(i,a,b) for(ll i=a;i<=b;i++) #define repi(i,a,b) for(int i=a;i<=b;i++) #define repr(i,a,b) for(ll i=a;i>=b;i--) #define reps(i,v) for(ll i=0;i<v.size();i++) #define rept(itr,v) for(auto itr=v.begin();itr!=v.end();itr++) #define rept1(itr,v) for(auto itr=v.begin()+1;itr!=v.end();itr++) #define rept2(itr,v) for(auto itr=v.begin();itr!=v.end()-1;itr++) #define print(x) cout << (x) << endl; #define fprint(x) printf("%.15lf\n",(x)); #define print2(x,y) cout << (x) << " " << (y) << endl; #define YesNo(test) cout << ((test) ? "Yes" : "No") << endl #define debug cout << "debug_print" << endl #define Bint boost::multiprecision::cpp_int template<typename T> void chmin(T &a, const T &b) { a = min(a, b); } template<typename T> void chmax(T &a, const T &b) { a = max(a, b); } ll myceil(ll a, ll b) { return (a+b-1) / b; } //const ll mod = 1e9+7; //const ll mod = 998244353; //typedef modint1000000007 mint; //typedef modint998244353 mint; //typedef modint mint //cout << sum.val() << endl; //mint::set_mod(mod); modが固定でないとき double x,y,z,w; double ht(double a){ return sqrt(a*a+y*y) - sqrt((x/a)*(x/a)+z*z); } int main() { // your code goes here cin >> x >> y >> z >> w; double l = 1e-10, r = 1e18; while((r-l)<1e-7){ double mid = (l+r)/2.0; if(ht(mid)>=w) r = mid; else l = mid; } fprint(x-l*y/2.0-(x/l)*z/2.0-(x/l-y)*(l-z)/2.0); return 0; }