結果

問題 No.306 さいたま2008
ユーザー TatsuDXTatsuDX
提出日時 2016-10-16 21:49:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 5,107 ms
コンパイル使用メモリ 73,992 KB
実行使用メモリ 54,164 KB
最終ジャッジ日時 2024-05-02 02:39:43
合計ジャッジ時間 7,073 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,164 KB
testcase_01 AC 130 ms
53,820 KB
testcase_02 AC 133 ms
53,744 KB
testcase_03 AC 130 ms
53,912 KB
testcase_04 AC 126 ms
53,872 KB
testcase_05 AC 107 ms
53,004 KB
testcase_06 AC 119 ms
53,740 KB
testcase_07 AC 121 ms
54,040 KB
testcase_08 AC 124 ms
54,100 KB
testcase_09 AC 134 ms
54,044 KB
testcase_10 AC 109 ms
52,828 KB
testcase_11 AC 108 ms
53,164 KB
testcase_12 AC 119 ms
54,016 KB
testcase_13 AC 124 ms
53,860 KB
testcase_14 AC 125 ms
53,600 KB
testcase_15 AC 119 ms
53,472 KB
testcase_16 AC 111 ms
53,604 KB
testcase_17 AC 118 ms
54,108 KB
testcase_18 AC 116 ms
54,112 KB
testcase_19 AC 111 ms
53,696 KB
testcase_20 AC 123 ms
54,092 KB
testcase_21 AC 109 ms
53,680 KB
testcase_22 AC 116 ms
53,456 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