結果

問題 No.306 さいたま2008
ユーザー k
提出日時 2020-08-14 15:12:26
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 483 bytes
コンパイル時間 2,053 ms
コンパイル使用メモリ 193,600 KB
最終ジャッジ日時 2025-01-12 22:47:42
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 13 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0; i<(int)(n); i++)
#define FOR(i,b,e) for (int i=(int)(b); i<(int)(e); i++)
#define ALL(x) (x).begin(), (x).end()

const double PI = acos(-1);

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  vector<int> x(2), y(2);
  REP (i, 2)
    cin >> x[i] >> y[i];

  double ret = 1.0 * x[0] / (x[0] + x[1]) * abs(y[0] - y[1]) + y[0];
  cout << fixed << setprecision(12) << ret << endl;
  
  return 0;
}
0