結果
| 問題 |
No.1230 Hall_and_me
|
| コンテスト | |
| ユーザー |
rinrinta121
|
| 提出日時 | 2020-09-18 23:50:14 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 456 bytes |
| コンパイル時間 | 1,638 ms |
| コンパイル使用メモリ | 166,704 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-22 11:02:14 |
| 合計ジャッジ時間 | 2,782 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 36 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define all(x) (x).begin(),(x).end()
typedef long long ll;
typedef pair<ll, ll> P;
const int mod = 1000000007; //出力は (ans % mod + mod) % mod (負の剰余を正にする)
const int inf = 1e9;
const long long INF = 1LL << 60;
int main()
{
double p,q,r; cin >> p >> q >> r;
double a = max({p+q,p+r,q+r});
printf("%.8lf\n",a/(p+q+r));
}
rinrinta121