結果

問題 No.306 さいたま2008
ユーザー tsunabittsunabit
提出日時 2020-03-27 02:16:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 3,569 ms
コンパイル使用メモリ 78,128 KB
実行使用メモリ 54,260 KB
最終ジャッジ日時 2024-06-10 15:51:52
合計ジャッジ時間 6,428 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
52,908 KB
testcase_01 AC 118 ms
53,848 KB
testcase_02 AC 117 ms
54,088 KB
testcase_03 AC 117 ms
53,844 KB
testcase_04 AC 121 ms
53,780 KB
testcase_05 AC 123 ms
53,884 KB
testcase_06 AC 124 ms
54,260 KB
testcase_07 AC 108 ms
52,604 KB
testcase_08 AC 124 ms
53,784 KB
testcase_09 AC 117 ms
54,020 KB
testcase_10 AC 116 ms
54,068 KB
testcase_11 AC 115 ms
53,988 KB
testcase_12 AC 115 ms
53,860 KB
testcase_13 AC 110 ms
53,324 KB
testcase_14 AC 120 ms
54,120 KB
testcase_15 AC 117 ms
54,028 KB
testcase_16 AC 105 ms
52,968 KB
testcase_17 AC 121 ms
54,056 KB
testcase_18 AC 111 ms
53,120 KB
testcase_19 AC 112 ms
53,428 KB
testcase_20 AC 114 ms
54,008 KB
testcase_21 AC 111 ms
53,892 KB
testcase_22 AC 103 ms
52,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No306 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int xa = sc.nextInt();
		int ya = sc.nextInt();
		int xb = sc.nextInt();
		int yb = sc.nextInt();
		System.out.println(1.0*yb-(1.0*yb-ya)/(1.0*xb+xa)*xb);
		
	}
}
0