結果

問題 No.306 さいたま2008
ユーザー atkrymatkrym
提出日時 2016-10-22 19:14:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 447 bytes
コンパイル時間 2,453 ms
コンパイル使用メモリ 74,692 KB
実行使用メモリ 41,620 KB
最終ジャッジ日時 2024-05-02 22:20:05
合計ジャッジ時間 6,637 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
41,084 KB
testcase_01 AC 148 ms
41,496 KB
testcase_02 AC 143 ms
41,548 KB
testcase_03 AC 141 ms
41,420 KB
testcase_04 AC 141 ms
41,300 KB
testcase_05 AC 140 ms
41,356 KB
testcase_06 AC 141 ms
41,468 KB
testcase_07 AC 127 ms
41,104 KB
testcase_08 AC 135 ms
41,468 KB
testcase_09 AC 134 ms
41,468 KB
testcase_10 AC 138 ms
40,972 KB
testcase_11 AC 138 ms
41,376 KB
testcase_12 AC 138 ms
41,280 KB
testcase_13 AC 140 ms
41,428 KB
testcase_14 AC 129 ms
40,988 KB
testcase_15 AC 130 ms
40,664 KB
testcase_16 AC 138 ms
41,472 KB
testcase_17 AC 137 ms
41,620 KB
testcase_18 AC 141 ms
41,572 KB
testcase_19 AC 140 ms
41,456 KB
testcase_20 AC 146 ms
41,132 KB
testcase_21 AC 140 ms
41,468 KB
testcase_22 AC 130 ms
40,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.text.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        float xa = sc.nextFloat();
        float ya = sc.nextFloat();
        float xb = sc.nextFloat();
        float yb = sc.nextFloat();
        
        float diff = (yb-ya)*(xa/(xb+xa));
        
        System.out.println(ya + diff);
    }
}
0