結果
| 問題 |
No.1230 Hall_and_me
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-09-18 21:54:37 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 4 ms / 2,000 ms |
| コード長 | 221 bytes |
| コンパイル時間 | 2,743 ms |
| コンパイル使用メモリ | 191,128 KB |
| 最終ジャッジ日時 | 2025-01-14 17:04:34 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 36 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main(){
cin.tie(nullptr);
ios::sync_with_stdio(false);
double p,q,r; cin >> p >> q >> r;
double t=p+q+r;
printf("%.9f\n",(t-min({p,q,r}))/t);
}