結果

問題 No.306 さいたま2008
ユーザー htensaihtensai
提出日時 2019-12-18 11:54:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 600 bytes
コンパイル時間 2,168 ms
コンパイル使用メモリ 75,900 KB
実行使用メモリ 50,444 KB
最終ジャッジ日時 2024-07-06 04:18:51
合計ジャッジ時間 4,342 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,140 KB
testcase_01 AC 54 ms
50,248 KB
testcase_02 AC 54 ms
49,768 KB
testcase_03 AC 54 ms
50,312 KB
testcase_04 AC 55 ms
50,020 KB
testcase_05 AC 55 ms
50,144 KB
testcase_06 AC 55 ms
50,308 KB
testcase_07 AC 54 ms
50,092 KB
testcase_08 AC 55 ms
50,080 KB
testcase_09 AC 54 ms
49,932 KB
testcase_10 AC 55 ms
50,056 KB
testcase_11 AC 55 ms
50,292 KB
testcase_12 AC 56 ms
50,296 KB
testcase_13 AC 55 ms
50,368 KB
testcase_14 AC 56 ms
49,956 KB
testcase_15 AC 54 ms
49,940 KB
testcase_16 AC 54 ms
50,148 KB
testcase_17 AC 54 ms
50,004 KB
testcase_18 AC 55 ms
50,100 KB
testcase_19 AC 54 ms
50,268 KB
testcase_20 AC 55 ms
50,024 KB
testcase_21 AC 55 ms
50,444 KB
testcase_22 AC 55 ms
50,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] first = br.readLine().split(" ", 2);
        double xa = Integer.parseInt(first[0]);
        double ya = Integer.parseInt(first[1]);
        String[] second = br.readLine().split(" ", 2);
        double xb = Integer.parseInt(second[0]);
        double yb = Integer.parseInt(second[1]);
        double ans = ya + xa / (xa + xb) * (yb - ya);
        System.out.println(ans);
    }
}
0