結果
問題 | No.1230 Hall_and_me |
ユーザー | msm1993 |
提出日時 | 2020-10-06 11:41:28 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 273 bytes |
コンパイル時間 | 1,598 ms |
コンパイル使用メモリ | 170,112 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 00:41:56 |
合計ジャッジ時間 | 3,105 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 36 |
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,n) for(int i=0; i<(n); i++) int main() { double A[3]; rep(i, 3) cin >> A[i]; sort(A, A + 3); double ans = A[1] + A[2]; ans /= A[0] + A[1] + A[2]; cout << fixed << setprecision(10) << ans << endl; return 0; }