結果

問題 No.236 鴛鴦茶
ユーザー htensaihtensai
提出日時 2019-12-10 14:55:30
言語 Java
(openjdk 23)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 2,468 ms
コンパイル使用メモリ 75,220 KB
実行使用メモリ 54,724 KB
最終ジャッジ日時 2024-06-24 01:49:43
合計ジャッジ時間 7,301 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
53,880 KB
testcase_01 AC 152 ms
54,036 KB
testcase_02 AC 153 ms
54,156 KB
testcase_03 AC 148 ms
54,260 KB
testcase_04 AC 153 ms
54,188 KB
testcase_05 AC 154 ms
54,220 KB
testcase_06 AC 148 ms
54,164 KB
testcase_07 AC 154 ms
54,288 KB
testcase_08 AC 151 ms
54,164 KB
testcase_09 AC 155 ms
54,724 KB
testcase_10 AC 155 ms
54,264 KB
testcase_11 AC 155 ms
54,280 KB
testcase_12 AC 151 ms
54,016 KB
testcase_13 AC 141 ms
54,272 KB
testcase_14 AC 142 ms
54,044 KB
testcase_15 AC 151 ms
54,112 KB
testcase_16 AC 148 ms
53,740 KB
testcase_17 AC 155 ms
54,232 KB
testcase_18 AC 151 ms
54,108 KB
testcase_19 AC 151 ms
54,324 KB
testcase_20 AC 151 ms
54,168 KB
testcase_21 AC 153 ms
54,140 KB
testcase_22 AC 154 ms
54,496 KB
testcase_23 AC 152 ms
54,388 KB
testcase_24 AC 153 ms
54,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        double a = sc.nextInt();
        double b = sc.nextInt();
        double x = sc.nextInt();
        double y = sc.nextInt();
        double rate = Math.min(x / a, y / b);
        System.out.println(rate * a + rate * b);
    }
}
0