結果

問題 No.450 ベー君のシャトルラン
ユーザー fal_rndfal_rnd
提出日時 2016-12-01 00:20:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 409 bytes
コンパイル時間 3,556 ms
コンパイル使用メモリ 83,804 KB
実行使用メモリ 54,520 KB
最終ジャッジ日時 2024-05-05 15:50:15
合計ジャッジ時間 7,957 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 211 ms
40,728 KB
testcase_01 AC 206 ms
40,596 KB
testcase_02 AC 212 ms
40,480 KB
testcase_03 AC 224 ms
41,556 KB
testcase_04 AC 217 ms
41,648 KB
testcase_05 AC 216 ms
41,304 KB
testcase_06 AC 197 ms
39,820 KB
testcase_07 AC 211 ms
40,460 KB
testcase_08 AC 214 ms
40,492 KB
testcase_09 AC 211 ms
40,524 KB
testcase_10 AC 210 ms
40,536 KB
testcase_11 AC 211 ms
40,532 KB
testcase_12 AC 215 ms
40,792 KB
testcase_13 AC 218 ms
41,180 KB
testcase_14 AC 218 ms
41,376 KB
testcase_15 AC 229 ms
41,360 KB
testcase_16 AC 230 ms
41,392 KB
testcase_17 AC 224 ms
41,212 KB
testcase_18 AC 221 ms
41,620 KB
testcase_19 AC 215 ms
41,020 KB
testcase_20 AC 210 ms
40,448 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<11451419;++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("%.20f\n",r);
	}
}
0