結果

問題 No.1230 Hall_and_me
ユーザー ninoinuininoinui
提出日時 2020-09-18 21:35:15
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 1,728 ms
コンパイル使用メモリ 195,832 KB
最終ジャッジ日時 2025-01-14 16:35:06
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 36
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

template<typename T, typename U> void cmax(T &a, U b) { if (a < b) a = b; }
template<typename T, typename U> void cmin(T &a, U b) { if (a > b) a = b; }

signed main() {
  cin.tie(nullptr);
  ios_base::sync_with_stdio(false);

  int N = 3;
  vector<int> A(N);
  for (int i = 0; i < N; i++) cin >> A.at(i);

  sort(A.begin(), A.end());
  int acc = accumulate(A.begin(), A.end(), 0);
  
  cout << fixed << setprecision(10) << (double) A.at(1) / acc + (double) A.at(2) / acc << "\n";
}
0