結果

問題 No.450 ベー君のシャトルラン
ユーザー hermione17hermione17
提出日時 2016-12-16 23:58:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 469 bytes
コンパイル時間 3,473 ms
コンパイル使用メモリ 74,372 KB
実行使用メモリ 42,024 KB
最終ジャッジ日時 2024-05-08 00:36:27
合計ジャッジ時間 6,842 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,572 KB
testcase_01 AC 119 ms
40,912 KB
testcase_02 AC 118 ms
40,908 KB
testcase_03 AC 129 ms
42,024 KB
testcase_04 AC 132 ms
41,548 KB
testcase_05 AC 135 ms
41,688 KB
testcase_06 AC 131 ms
41,472 KB
testcase_07 AC 119 ms
41,448 KB
testcase_08 AC 136 ms
41,688 KB
testcase_09 AC 127 ms
41,052 KB
testcase_10 AC 135 ms
41,652 KB
testcase_11 AC 115 ms
40,832 KB
testcase_12 AC 135 ms
41,600 KB
testcase_13 AC 129 ms
41,576 KB
testcase_14 AC 134 ms
41,680 KB
testcase_15 AC 112 ms
41,076 KB
testcase_16 AC 116 ms
40,876 KB
testcase_17 AC 111 ms
40,804 KB
testcase_18 AC 132 ms
41,640 KB
testcase_19 AC 111 ms
41,060 KB
testcase_20 AC 118 ms
41,308 KB
testcase_21 AC 126 ms
41,808 KB
testcase_22 AC 117 ms
41,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintStream;
import java.util.Scanner;


public class Y450 {
	Scanner in = new Scanner(System.in);
	PrintStream out = new PrintStream(System.out);

	Y450() throws Exception {
		double vl = in.nextDouble();
		double vr = in.nextDouble();
		double d = in.nextDouble();
		double w = in.nextDouble();
		
		double t = d / (vl + vr);
		double dist = w * t;
		out.println(dist);
	}

	public static void main(String argv[]) throws Exception {
		new Y450();
	}
}
0