結果

問題 No.450 ベー君のシャトルラン
ユーザー fal_rndfal_rnd
提出日時 2016-12-01 00:17:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 407 bytes
コンパイル時間 2,869 ms
コンパイル使用メモリ 74,884 KB
実行使用メモリ 56,056 KB
最終ジャッジ日時 2024-05-05 15:46:42
合計ジャッジ時間 6,038 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,016 KB
testcase_01 AC 126 ms
41,612 KB
testcase_02 AC 130 ms
41,304 KB
testcase_03 AC 129 ms
41,556 KB
testcase_04 AC 127 ms
41,720 KB
testcase_05 AC 137 ms
41,420 KB
testcase_06 AC 126 ms
41,456 KB
testcase_07 AC 122 ms
41,208 KB
testcase_08 AC 124 ms
41,472 KB
testcase_09 AC 124 ms
41,072 KB
testcase_10 AC 123 ms
41,352 KB
testcase_11 AC 131 ms
41,428 KB
testcase_12 AC 127 ms
41,460 KB
testcase_13 AC 128 ms
41,752 KB
testcase_14 AC 124 ms
41,536 KB
testcase_15 AC 124 ms
41,556 KB
testcase_16 AC 114 ms
40,444 KB
testcase_17 AC 121 ms
41,520 KB
testcase_18 AC 118 ms
40,728 KB
testcase_19 AC 125 ms
41,512 KB
testcase_20 AC 112 ms
40,620 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class B{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		int
			vl=s.nextInt(),
			vr=s.nextInt(),
			d =s.nextInt(),
			w =s.nextInt();

		double
			xl=0,
			xr=d,
			r=0;

		for(int i=0;i<114514;++i){

			double t=(i%2==0)?
					(xr-xl)/(w+vr):
					(xr-xl)/(w+vl);
			r+=t*w;
			xl+=t*vl;
			xr-=t*vr;
		}
		System.out.printf("%.10f\n",r);
	}
}
0