結果

問題 No.450 ベー君のシャトルラン
ユーザー femtofemto
提出日時 2016-12-01 02:11:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 458 bytes
コンパイル時間 1,770 ms
コンパイル使用メモリ 166,912 KB
実行使用メモリ 6,940 KB
最終ジャッジ日時 2024-05-05 16:17:33
合計ジャッジ時間 28,196 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,153 ms
5,248 KB
testcase_01 AC 1,146 ms
5,376 KB
testcase_02 AC 1,165 ms
5,376 KB
testcase_03 AC 1,157 ms
5,376 KB
testcase_04 AC 1,153 ms
5,376 KB
testcase_05 AC 1,163 ms
5,376 KB
testcase_06 AC 1,158 ms
5,376 KB
testcase_07 AC 1,147 ms
5,376 KB
testcase_08 AC 1,159 ms
5,376 KB
testcase_09 AC 1,144 ms
5,376 KB
testcase_10 AC 1,157 ms
5,376 KB
testcase_11 AC 1,141 ms
5,376 KB
testcase_12 AC 1,150 ms
5,376 KB
testcase_13 AC 1,157 ms
5,376 KB
testcase_14 AC 1,159 ms
5,376 KB
testcase_15 AC 1,143 ms
5,376 KB
testcase_16 AC 1,152 ms
5,376 KB
testcase_17 AC 1,251 ms
5,376 KB
testcase_18 AC 1,162 ms
5,376 KB
testcase_19 AC 1,144 ms
5,376 KB
testcase_20 AC 1,158 ms
5,376 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

	double v1, v2, d, w;
	cin >> v1 >> v2 >> d >> w;

	double ans = 0;
	for(int i = 0; i < 20000000; i++) {
		if(i % 2 == 0) {
			double t = d / (w + v2);
			ans += w * t;
			d -= t * (v1 + v2);
		}
		else {
			double t = d / (w + v1);
			ans += w * t;
			d -= t * (v1 + v2);
		}
	}
	cout << fixed << setprecision(15) << ans << endl;
}
0