結果

問題 No.1230 Hall_and_me
ユーザー hiro71687khiro71687k
提出日時 2023-04-10 10:55:30
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 4,340 ms
コンパイル使用メモリ 266,192 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-05 18:37:05
合計ジャッジ時間 5,395 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 36
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll inf=144494;
ll mod=1000000007;
int main(){
    ld p,q,r;
    cin >> p >> q >> r;
    vector<ld>x;
    x={p,q,r};
    sort(x.begin(),x.end());
    ld sum=p+q+r;
    ld s=x[1]+x[2];
    cout << setprecision(100) << (s/sum) << endl;
}
0