結果

問題 No.450 ベー君のシャトルラン
ユーザー femtofemto
提出日時 2016-12-01 02:11:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 458 bytes
コンパイル時間 1,543 ms
コンパイル使用メモリ 167,512 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-27 15:06:13
合計ジャッジ時間 26,566 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,114 ms
5,248 KB
testcase_01 AC 1,107 ms
5,248 KB
testcase_02 AC 1,103 ms
5,248 KB
testcase_03 AC 1,106 ms
5,248 KB
testcase_04 AC 1,116 ms
6,820 KB
testcase_05 AC 1,096 ms
6,816 KB
testcase_06 AC 1,105 ms
6,820 KB
testcase_07 AC 1,108 ms
6,816 KB
testcase_08 AC 1,092 ms
6,816 KB
testcase_09 AC 1,092 ms
6,816 KB
testcase_10 AC 1,099 ms
6,820 KB
testcase_11 AC 1,097 ms
6,816 KB
testcase_12 AC 1,095 ms
6,816 KB
testcase_13 AC 1,099 ms
6,816 KB
testcase_14 AC 1,116 ms
6,820 KB
testcase_15 AC 1,112 ms
6,816 KB
testcase_16 AC 1,100 ms
6,820 KB
testcase_17 AC 1,120 ms
6,820 KB
testcase_18 AC 1,130 ms
6,820 KB
testcase_19 AC 1,092 ms
6,816 KB
testcase_20 AC 1,091 ms
6,816 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