結果
問題 | No.306 さいたま2008 |
ユーザー |
|
提出日時 | 2020-08-14 15:21:09 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 555 bytes |
コンパイル時間 | 1,800 ms |
コンパイル使用メモリ | 195,516 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2025-02-14 12:17:13 |
合計ジャッジ時間 | 2,763 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 26 |
ソースコード
#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];if (y[0] > y[1]) {swap(x[0], x[1]);swap(y[0], y[1]);}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;}