結果

問題 No.306 さいたま2008
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-28 12:09:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 2,372 ms
コンパイル使用メモリ 74,540 KB
実行使用メモリ 41,384 KB
最終ジャッジ日時 2024-05-05 14:31:12
合計ジャッジ時間 5,875 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,376 KB
testcase_01 AC 121 ms
41,352 KB
testcase_02 AC 112 ms
41,364 KB
testcase_03 AC 110 ms
41,156 KB
testcase_04 AC 108 ms
41,200 KB
testcase_05 AC 116 ms
41,000 KB
testcase_06 AC 110 ms
41,232 KB
testcase_07 AC 118 ms
41,312 KB
testcase_08 AC 101 ms
40,468 KB
testcase_09 AC 116 ms
41,364 KB
testcase_10 AC 107 ms
40,360 KB
testcase_11 AC 114 ms
40,972 KB
testcase_12 AC 118 ms
41,384 KB
testcase_13 AC 121 ms
41,296 KB
testcase_14 AC 111 ms
41,240 KB
testcase_15 AC 107 ms
40,988 KB
testcase_16 AC 116 ms
41,140 KB
testcase_17 AC 100 ms
40,224 KB
testcase_18 AC 107 ms
40,864 KB
testcase_19 AC 110 ms
41,172 KB
testcase_20 AC 109 ms
41,080 KB
testcase_21 AC 104 ms
40,140 KB
testcase_22 AC 108 ms
41,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    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();
        double ans = ya+(double)(yb-ya)/(xb+xa)*xa;
        System.out.println(ans);
    }
}
0