結果

問題 No.450 ベー君のシャトルラン
ユーザー GrenacheGrenache
提出日時 2016-12-01 12:49:14
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 826 bytes
コンパイル時間 4,399 ms
コンパイル使用メモリ 74,832 KB
実行使用メモリ 47,632 KB
最終ジャッジ日時 2024-05-05 16:33:40
合計ジャッジ時間 8,821 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
46,716 KB
testcase_01 AC 181 ms
41,232 KB
testcase_02 AC 178 ms
41,428 KB
testcase_03 AC 177 ms
41,432 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder450 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int vl = sc.nextInt();
		int vr = sc.nextInt();
		double d = sc.nextInt();
		int w = sc.nextInt();

		double ret = 0;
		for (int i = 0; i < 1000000 || d < 0; i++) {
			int v;
			if (i % 2 == 0) {
				v = vr + w;
			} else {
				v = vl + w;
			}

			double tmp = d / v;
			ret += tmp * w;
			d -= (vr + vl) * tmp;
		}

		pr.printf("%.7f\n", ret);

	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0