結果

問題 No.450 ベー君のシャトルラン
ユーザー uafr_csuafr_cs
提出日時 2017-11-04 19:38:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 1,167 bytes
コンパイル時間 2,294 ms
コンパイル使用メモリ 77,836 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-11-24 01:12:06
合計ジャッジ時間 6,530 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
41,280 KB
testcase_01 AC 143 ms
41,356 KB
testcase_02 AC 134 ms
40,616 KB
testcase_03 AC 141 ms
41,728 KB
testcase_04 AC 142 ms
41,356 KB
testcase_05 AC 144 ms
41,552 KB
testcase_06 AC 139 ms
41,212 KB
testcase_07 AC 141 ms
41,184 KB
testcase_08 AC 143 ms
41,472 KB
testcase_09 AC 138 ms
41,436 KB
testcase_10 AC 132 ms
40,704 KB
testcase_11 AC 150 ms
41,496 KB
testcase_12 AC 145 ms
41,340 KB
testcase_13 AC 142 ms
41,512 KB
testcase_14 AC 127 ms
41,184 KB
testcase_15 AC 144 ms
41,160 KB
testcase_16 AC 129 ms
41,012 KB
testcase_17 AC 146 ms
41,056 KB
testcase_18 AC 132 ms
41,240 KB
testcase_19 AC 133 ms
40,972 KB
testcase_20 AC 143 ms
41,468 KB
testcase_21 AC 147 ms
41,472 KB
testcase_22 AC 143 ms
41,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	
	public static long MOD = 1000000007;
	
	public static double[] run(double d, double w, double vl, double vr){
		double running = 0;
		
		final double go_right_t = d / (w + vr);
		running += w * go_right_t;
		d -= go_right_t * (vl + vr);
		
		final double go_left_t = d / (w + vl);
		running += w * go_left_t;
		d -= go_left_t * (vl + vr);
		
		return new double[]{d, running};
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final double vl = sc.nextDouble();
		final double vr = sc.nextDouble();
		
		final double d = sc.nextDouble();
		final double w = sc.nextDouble();
		
		double[] first_try = run(d, w, vl, vr);
		final double second_d = first_try[0];
		
		double[] second_try = run(second_d, w, vl, vr);
		
		final double first_run  = first_try[1];
		final double second_run = second_try[1];
		
		final double rate = second_run / first_run;
		final double limit = first_run / (1 - rate);
		//System.out.println(first_run + " " + second_run + " " + rate + " " + limit);
		
		System.out.printf("%.8f\n", limit);
	}
}
0