結果

問題 No.306 さいたま2008
ユーザー TatsuDXTatsuDX
提出日時 2016-10-16 21:49:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 3,994 ms
コンパイル使用メモリ 73,912 KB
実行使用メモリ 54,508 KB
最終ジャッジ日時 2024-11-22 12:31:57
合計ジャッジ時間 8,358 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
54,144 KB
testcase_01 AC 150 ms
54,096 KB
testcase_02 AC 149 ms
54,036 KB
testcase_03 AC 148 ms
54,132 KB
testcase_04 AC 148 ms
54,240 KB
testcase_05 AC 153 ms
54,256 KB
testcase_06 AC 144 ms
54,092 KB
testcase_07 AC 145 ms
54,184 KB
testcase_08 AC 146 ms
54,092 KB
testcase_09 AC 146 ms
54,276 KB
testcase_10 AC 142 ms
54,036 KB
testcase_11 AC 147 ms
54,136 KB
testcase_12 AC 145 ms
53,984 KB
testcase_13 AC 158 ms
54,508 KB
testcase_14 AC 147 ms
54,132 KB
testcase_15 AC 148 ms
54,144 KB
testcase_16 AC 144 ms
54,204 KB
testcase_17 AC 150 ms
54,356 KB
testcase_18 AC 146 ms
54,092 KB
testcase_19 AC 148 ms
54,140 KB
testcase_20 AC 148 ms
54,156 KB
testcase_21 AC 147 ms
53,904 KB
testcase_22 AC 146 ms
53,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static Scanner sc = new Scanner(System.in);

	public static void main(String[] args) {
		double ax = sc.nextDouble(), ay = sc.nextDouble(), bx = sc.nextDouble(), by = sc.nextDouble();
		double ty = ay-by, tx = bx/(ax+bx);
		System.out.println(by+tx*ty);
	}
}
0