結果

問題 No.236 鴛鴦茶
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 19:21:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 74,488 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-06-28 13:09:12
合計ジャッジ時間 6,053 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,108 KB
testcase_01 AC 118 ms
40,152 KB
testcase_02 AC 114 ms
39,832 KB
testcase_03 AC 119 ms
40,576 KB
testcase_04 AC 128 ms
40,956 KB
testcase_05 AC 132 ms
41,116 KB
testcase_06 AC 129 ms
41,232 KB
testcase_07 AC 126 ms
40,968 KB
testcase_08 AC 128 ms
40,988 KB
testcase_09 AC 128 ms
41,280 KB
testcase_10 AC 124 ms
40,732 KB
testcase_11 AC 116 ms
40,180 KB
testcase_12 AC 126 ms
41,332 KB
testcase_13 AC 118 ms
40,344 KB
testcase_14 AC 127 ms
41,236 KB
testcase_15 AC 127 ms
41,344 KB
testcase_16 AC 128 ms
41,052 KB
testcase_17 AC 131 ms
41,228 KB
testcase_18 AC 114 ms
39,908 KB
testcase_19 AC 130 ms
41,336 KB
testcase_20 AC 128 ms
41,088 KB
testcase_21 AC 128 ms
41,044 KB
testcase_22 AC 128 ms
41,160 KB
testcase_23 AC 112 ms
40,004 KB
testcase_24 AC 131 ms
40,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int A = sc.nextInt();
        int B = sc.nextInt();
        int X = sc.nextInt();
        int Y = sc.nextInt();
        double c = (double)X/A;
        double d = (double)Y/B;
        double e = Math.min(c,d);
        double r = e*(A+B);
        System.out.println(r);
    }
}
0