結果

問題 No.450 ベー君のシャトルラン
ユーザー GrenacheGrenache
提出日時 2016-12-01 12:54:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 847 bytes
コンパイル時間 6,138 ms
コンパイル使用メモリ 74,992 KB
実行使用メモリ 41,856 KB
最終ジャッジ日時 2024-05-05 16:34:45
合計ジャッジ時間 8,723 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 207 ms
41,368 KB
testcase_01 AC 207 ms
41,388 KB
testcase_02 AC 205 ms
41,856 KB
testcase_03 AC 209 ms
41,680 KB
testcase_04 AC 133 ms
41,156 KB
testcase_05 AC 119 ms
40,020 KB
testcase_06 AC 132 ms
41,472 KB
testcase_07 AC 206 ms
41,228 KB
testcase_08 AC 208 ms
41,376 KB
testcase_09 AC 135 ms
41,180 KB
testcase_10 AC 208 ms
41,568 KB
testcase_11 AC 137 ms
41,288 KB
testcase_12 AC 211 ms
41,576 KB
testcase_13 AC 137 ms
41,448 KB
testcase_14 AC 215 ms
41,544 KB
testcase_15 AC 136 ms
41,472 KB
testcase_16 AC 132 ms
41,676 KB
testcase_17 AC 207 ms
41,564 KB
testcase_18 AC 132 ms
41,496 KB
testcase_19 AC 210 ms
41,148 KB
testcase_20 AC 208 ms
41,468 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
		pr.println(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