結果

問題 No.236 鴛鴦茶
ユーザー yun_appyun_app
提出日時 2016-05-12 00:19:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 645 bytes
コンパイル時間 2,213 ms
コンパイル使用メモリ 75,004 KB
実行使用メモリ 37,516 KB
最終ジャッジ日時 2024-10-05 13:52:13
合計ジャッジ時間 4,371 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,888 KB
testcase_01 AC 52 ms
36,928 KB
testcase_02 AC 51 ms
37,140 KB
testcase_03 AC 51 ms
37,420 KB
testcase_04 AC 53 ms
37,168 KB
testcase_05 AC 52 ms
37,232 KB
testcase_06 AC 52 ms
37,476 KB
testcase_07 WA -
testcase_08 AC 52 ms
37,324 KB
testcase_09 AC 53 ms
37,220 KB
testcase_10 AC 53 ms
37,516 KB
testcase_11 WA -
testcase_12 AC 52 ms
37,456 KB
testcase_13 AC 52 ms
37,064 KB
testcase_14 AC 52 ms
36,796 KB
testcase_15 AC 53 ms
37,432 KB
testcase_16 AC 52 ms
36,928 KB
testcase_17 AC 52 ms
37,300 KB
testcase_18 AC 53 ms
37,152 KB
testcase_19 AC 54 ms
37,516 KB
testcase_20 AC 54 ms
37,516 KB
testcase_21 AC 52 ms
37,420 KB
testcase_22 AC 53 ms
37,292 KB
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

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(" ");
        double a = Double.parseDouble(lines[0]);
        double b = Double.parseDouble(lines[1]);
        double x = Double.parseDouble(lines[2]);
        double y = Double.parseDouble(lines[3]);
        
        if(a*y > b*x){
            System.out.println(x + x*a/b);
        }else{
            System.out.println(y + y*a/b);
        }
    }
}
0