結果

問題 No.236 鴛鴦茶
ユーザー mits58mits58
提出日時 2016-07-02 00:49:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 2,123 ms
コンパイル使用メモリ 74,432 KB
実行使用メモリ 41,888 KB
最終ジャッジ日時 2024-06-28 13:07:12
合計ジャッジ時間 6,718 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
41,888 KB
testcase_01 AC 147 ms
41,300 KB
testcase_02 AC 146 ms
41,328 KB
testcase_03 AC 148 ms
41,784 KB
testcase_04 AC 133 ms
40,828 KB
testcase_05 AC 131 ms
41,088 KB
testcase_06 AC 147 ms
41,080 KB
testcase_07 AC 145 ms
41,804 KB
testcase_08 AC 145 ms
41,808 KB
testcase_09 AC 145 ms
41,544 KB
testcase_10 AC 132 ms
40,476 KB
testcase_11 AC 144 ms
41,276 KB
testcase_12 AC 145 ms
41,672 KB
testcase_13 AC 146 ms
41,568 KB
testcase_14 AC 148 ms
41,496 KB
testcase_15 AC 147 ms
41,640 KB
testcase_16 AC 147 ms
41,532 KB
testcase_17 AC 144 ms
41,332 KB
testcase_18 AC 144 ms
41,596 KB
testcase_19 AC 149 ms
41,456 KB
testcase_20 AC 145 ms
41,368 KB
testcase_21 AC 149 ms
41,484 KB
testcase_22 AC 144 ms
41,048 KB
testcase_23 AC 146 ms
41,452 KB
testcase_24 AC 150 ms
41,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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