結果

問題 No.236 鴛鴦茶
ユーザー 練習生練習生
提出日時 2015-08-06 19:03:12
言語 Java
(openjdk 23)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 467 bytes
コンパイル時間 3,269 ms
コンパイル使用メモリ 74,084 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-06-28 12:54:24
合計ジャッジ時間 7,401 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,372 KB
testcase_01 AC 116 ms
41,468 KB
testcase_02 AC 133 ms
41,512 KB
testcase_03 AC 129 ms
41,052 KB
testcase_04 AC 129 ms
41,108 KB
testcase_05 AC 131 ms
41,020 KB
testcase_06 AC 130 ms
41,384 KB
testcase_07 AC 131 ms
41,508 KB
testcase_08 AC 136 ms
40,840 KB
testcase_09 AC 130 ms
40,952 KB
testcase_10 AC 131 ms
41,072 KB
testcase_11 AC 131 ms
41,200 KB
testcase_12 AC 134 ms
41,092 KB
testcase_13 AC 128 ms
41,384 KB
testcase_14 AC 130 ms
40,968 KB
testcase_15 AC 122 ms
39,572 KB
testcase_16 AC 129 ms
41,272 KB
testcase_17 AC 133 ms
40,984 KB
testcase_18 AC 131 ms
40,792 KB
testcase_19 AC 130 ms
41,208 KB
testcase_20 AC 129 ms
41,164 KB
testcase_21 AC 128 ms
41,412 KB
testcase_22 AC 132 ms
41,124 KB
testcase_23 AC 139 ms
41,156 KB
testcase_24 AC 135 ms
41,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No236 {
	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();
		sc.close();
		double work1, work2;
		work1 = (double)x * (a + b) / a;
		work2 = (double)y * (a + b) / b;
		double en_ou_tya;
		if(work1 > work2){
			en_ou_tya = work2;
		}else{
			en_ou_tya = work1;
		}
		System.out.println(en_ou_tya);
	}
}
0