結果

問題 No.450 ベー君のシャトルラン
ユーザー ei1333333ei1333333
提出日時 2016-12-01 00:31:43
言語 C++11
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 333 bytes
コンパイル時間 1,316 ms
コンパイル使用メモリ 158,072 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-27 14:50:39
合計ジャッジ時間 22,080 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 892 ms
5,248 KB
testcase_01 AC 910 ms
5,248 KB
testcase_02 AC 909 ms
5,248 KB
testcase_03 AC 918 ms
5,248 KB
testcase_04 AC 917 ms
5,248 KB
testcase_05 AC 901 ms
5,248 KB
testcase_06 AC 905 ms
5,248 KB
testcase_07 AC 902 ms
5,248 KB
testcase_08 AC 901 ms
5,248 KB
testcase_09 AC 901 ms
5,248 KB
testcase_10 AC 903 ms
5,248 KB
testcase_11 AC 904 ms
5,248 KB
testcase_12 AC 901 ms
5,248 KB
testcase_13 AC 906 ms
5,248 KB
testcase_14 AC 896 ms
5,248 KB
testcase_15 AC 903 ms
5,248 KB
testcase_16 AC 900 ms
5,248 KB
testcase_17 AC 910 ms
5,248 KB
testcase_18 AC 899 ms
5,248 KB
testcase_19 AC 909 ms
5,248 KB
testcase_20 AC 890 ms
5,248 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

int main()
{
  long double vl, vr, d, w;

  cin >> vl >> vr;
  cin >> d;
  cin >> w;

  long double ret = 0;
  for(int i = 0; i < 1145141; i++) {
    ret += w / (w + vr) * d;
    d -= d / (w + vr) * (vl + vr);
    swap(vl, vr);
  }
  cout << fixed << setprecision(10) << ret << endl;
}
0