結果

問題 No.450 ベー君のシャトルラン
ユーザー uafr_csuafr_cs
提出日時 2017-11-04 19:22:02
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 770 bytes
コンパイル時間 2,120 ms
コンパイル使用メモリ 75,316 KB
実行使用メモリ 83,244 KB
最終ジャッジ日時 2024-11-24 01:13:18
合計ジャッジ時間 12,070 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
46,836 KB
testcase_01 AC 145 ms
83,244 KB
testcase_02 AC 145 ms
46,844 KB
testcase_03 AC 144 ms
41,320 KB
testcase_04 AC 143 ms
40,924 KB
testcase_05 AC 145 ms
41,528 KB
testcase_06 AC 142 ms
41,168 KB
testcase_07 AC 134 ms
40,416 KB
testcase_08 AC 146 ms
41,228 KB
testcase_09 AC 134 ms
40,568 KB
testcase_10 AC 122 ms
40,860 KB
testcase_11 AC 147 ms
41,204 KB
testcase_12 AC 138 ms
41,328 KB
testcase_13 AC 140 ms
41,052 KB
testcase_14 AC 139 ms
41,304 KB
testcase_15 AC 140 ms
41,316 KB
testcase_16 AC 141 ms
41,428 KB
testcase_17 AC 148 ms
41,392 KB
testcase_18 AC 144 ms
41,612 KB
testcase_19 AC 147 ms
41,208 KB
testcase_20 AC 141 ms
41,288 KB
testcase_21 TLE -
testcase_22 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final double vl = sc.nextDouble();
		final double vr = sc.nextDouble();
		
		double d = sc.nextDouble();
		final double w = sc.nextDouble();
		
		double prev_answer = 0, answer = 0;
		while(true){
			final double go_right_t = d / (w + vr);
			answer += w * go_right_t;
			d -= go_right_t * (vl + vr);
			
			final double go_left_t = d / (w + vl);
			answer += w * go_left_t;
			d -= go_left_t * (vl + vr);
			
			if(Math.abs(prev_answer - answer) <= 1e-6){ break; }
			prev_answer = answer;
		}
		
		System.out.printf("%.8f\n", answer);
	}
}
0