結果

問題 No.236 鴛鴦茶
ユーザー tentententen
提出日時 2020-12-07 12:21:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 2,068 ms
コンパイル使用メモリ 73,728 KB
実行使用メモリ 55,780 KB
最終ジャッジ日時 2024-09-17 13:51:55
合計ジャッジ時間 5,675 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
54,264 KB
testcase_01 AC 111 ms
53,952 KB
testcase_02 AC 101 ms
52,724 KB
testcase_03 AC 112 ms
54,112 KB
testcase_04 AC 118 ms
53,868 KB
testcase_05 AC 118 ms
54,100 KB
testcase_06 AC 112 ms
53,856 KB
testcase_07 AC 114 ms
54,084 KB
testcase_08 AC 114 ms
54,064 KB
testcase_09 AC 113 ms
53,892 KB
testcase_10 AC 103 ms
53,120 KB
testcase_11 AC 113 ms
53,772 KB
testcase_12 AC 113 ms
54,224 KB
testcase_13 AC 102 ms
53,080 KB
testcase_14 AC 112 ms
54,092 KB
testcase_15 AC 114 ms
53,996 KB
testcase_16 AC 116 ms
54,120 KB
testcase_17 AC 122 ms
54,276 KB
testcase_18 AC 128 ms
54,068 KB
testcase_19 AC 123 ms
53,888 KB
testcase_20 AC 118 ms
54,128 KB
testcase_21 AC 118 ms
53,984 KB
testcase_22 AC 123 ms
55,780 KB
testcase_23 AC 116 ms
53,964 KB
testcase_24 AC 113 ms
54,124 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 ans;
        if (x * b <= y * a) {
            ans = (double)x / a * b + x;
        } else {
            ans = (double)y / b * a + y;
        }
        System.out.println(ans);
    }
}
0