結果

問題 No.450 ベー君のシャトルラン
ユーザー GrenacheGrenache
提出日時 2016-12-01 12:51:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 827 bytes
コンパイル時間 3,647 ms
コンパイル使用メモリ 74,960 KB
実行使用メモリ 41,456 KB
最終ジャッジ日時 2024-05-05 16:33:59
合計ジャッジ時間 7,214 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
41,292 KB
testcase_01 AC 185 ms
41,212 KB
testcase_02 AC 180 ms
41,392 KB
testcase_03 AC 169 ms
40,696 KB
testcase_04 AC 105 ms
40,092 KB
testcase_05 AC 113 ms
41,384 KB
testcase_06 AC 102 ms
40,260 KB
testcase_07 AC 187 ms
41,356 KB
testcase_08 AC 170 ms
40,280 KB
testcase_09 AC 101 ms
40,408 KB
testcase_10 AC 167 ms
40,580 KB
testcase_11 AC 109 ms
40,868 KB
testcase_12 AC 170 ms
40,304 KB
testcase_13 AC 105 ms
40,252 KB
testcase_14 AC 168 ms
40,440 KB
testcase_15 AC 118 ms
41,292 KB
testcase_16 AC 102 ms
40,452 KB
testcase_17 AC 181 ms
41,224 KB
testcase_18 AC 113 ms
41,392 KB
testcase_19 AC 176 ms
41,344 KB
testcase_20 AC 178 ms
41,228 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);

	}

	// ---------------------------------------------------
	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