結果

問題 No.236 鴛鴦茶
ユーザー yun_appyun_app
提出日時 2016-05-12 00:20:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 633 bytes
コンパイル時間 2,016 ms
コンパイル使用メモリ 74,208 KB
実行使用メモリ 50,660 KB
最終ジャッジ日時 2024-06-28 13:04:36
合計ジャッジ時間 4,186 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,568 KB
testcase_01 AC 54 ms
50,468 KB
testcase_02 AC 54 ms
50,160 KB
testcase_03 AC 52 ms
50,472 KB
testcase_04 AC 56 ms
50,256 KB
testcase_05 AC 55 ms
50,412 KB
testcase_06 AC 54 ms
50,220 KB
testcase_07 AC 54 ms
50,508 KB
testcase_08 AC 54 ms
50,224 KB
testcase_09 AC 54 ms
50,288 KB
testcase_10 AC 55 ms
50,660 KB
testcase_11 AC 53 ms
50,420 KB
testcase_12 AC 54 ms
50,480 KB
testcase_13 AC 53 ms
50,656 KB
testcase_14 AC 54 ms
50,332 KB
testcase_15 AC 54 ms
50,232 KB
testcase_16 AC 55 ms
50,104 KB
testcase_17 AC 54 ms
50,280 KB
testcase_18 AC 55 ms
50,500 KB
testcase_19 AC 56 ms
50,264 KB
testcase_20 AC 54 ms
50,404 KB
testcase_21 AC 54 ms
50,256 KB
testcase_22 AC 54 ms
50,460 KB
testcase_23 AC 54 ms
50,128 KB
testcase_24 AC 54 ms
50,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Ideone{
    public static void main(String[] args) throws Exception{
        // your code goes here
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] lines = br.readLine().split(" ");
        float a = Float.parseFloat(lines[0]);
        float b = Float.parseFloat(lines[1]);
        float x = Float.parseFloat(lines[2]);
        float y = Float.parseFloat(lines[3]);
        
        if(a*y > b*x){
            System.out.println(x + x*b/a);
        }else{
            System.out.println(y + y*a/b);
        }
    }
}
0