結果

問題 No.450 ベー君のシャトルラン
ユーザー ぴろずぴろず
提出日時 2016-12-01 00:07:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 1,799 ms
コンパイル使用メモリ 74,388 KB
実行使用メモリ 42,076 KB
最終ジャッジ日時 2024-05-05 15:41:19
合計ジャッジ時間 5,374 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,684 KB
testcase_01 AC 107 ms
40,696 KB
testcase_02 AC 118 ms
40,884 KB
testcase_03 AC 123 ms
42,076 KB
testcase_04 AC 125 ms
41,588 KB
testcase_05 AC 112 ms
41,108 KB
testcase_06 AC 120 ms
41,296 KB
testcase_07 AC 120 ms
41,276 KB
testcase_08 AC 116 ms
41,060 KB
testcase_09 AC 119 ms
41,440 KB
testcase_10 AC 114 ms
40,812 KB
testcase_11 AC 110 ms
40,556 KB
testcase_12 AC 114 ms
41,040 KB
testcase_13 AC 116 ms
40,984 KB
testcase_14 AC 111 ms
41,220 KB
testcase_15 AC 110 ms
41,048 KB
testcase_16 AC 120 ms
41,320 KB
testcase_17 AC 121 ms
41,608 KB
testcase_18 AC 112 ms
40,808 KB
testcase_19 AC 119 ms
41,168 KB
testcase_20 AC 118 ms
40,972 KB
testcase_21 AC 124 ms
41,708 KB
testcase_22 AC 126 ms
41,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no450;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		double vl = sc.nextDouble();
		double vr = sc.nextDouble();
		double d = sc.nextDouble();
		double w = sc.nextDouble();
		System.out.println(String.format("%.7f", d / (vl + vr) * w));
	}

}
0