結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,472 KB
testcase_01 AC 145 ms
41,780 KB
testcase_02 AC 134 ms
41,652 KB
testcase_03 AC 133 ms
41,796 KB
testcase_04 AC 136 ms
41,952 KB
testcase_05 AC 136 ms
42,024 KB
testcase_06 AC 137 ms
41,624 KB
testcase_07 AC 136 ms
41,596 KB
testcase_08 AC 133 ms
41,764 KB
testcase_09 AC 144 ms
41,592 KB
testcase_10 AC 136 ms
41,804 KB
testcase_11 AC 146 ms
41,676 KB
testcase_12 AC 133 ms
41,784 KB
testcase_13 AC 147 ms
41,500 KB
testcase_14 AC 145 ms
41,572 KB
testcase_15 AC 139 ms
41,836 KB
testcase_16 AC 138 ms
42,036 KB
testcase_17 AC 136 ms
41,804 KB
testcase_18 AC 130 ms
41,616 KB
testcase_19 AC 137 ms
41,484 KB
testcase_20 AC 122 ms
41,388 KB
testcase_21 AC 135 ms
41,536 KB
testcase_22 AC 135 ms
41,572 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