結果

問題 No.236 鴛鴦茶
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 16:56:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 4,107 ms
コンパイル使用メモリ 73,856 KB
実行使用メモリ 41,896 KB
最終ジャッジ日時 2024-06-28 13:08:26
合計ジャッジ時間 8,087 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
41,208 KB
testcase_01 AC 153 ms
41,404 KB
testcase_02 AC 153 ms
41,756 KB
testcase_03 AC 148 ms
41,480 KB
testcase_04 AC 152 ms
41,852 KB
testcase_05 AC 155 ms
41,732 KB
testcase_06 AC 153 ms
41,852 KB
testcase_07 AC 150 ms
41,500 KB
testcase_08 AC 147 ms
41,616 KB
testcase_09 AC 146 ms
41,324 KB
testcase_10 AC 148 ms
41,776 KB
testcase_11 AC 154 ms
41,108 KB
testcase_12 AC 147 ms
41,388 KB
testcase_13 AC 149 ms
41,628 KB
testcase_14 AC 155 ms
41,400 KB
testcase_15 AC 149 ms
41,240 KB
testcase_16 AC 153 ms
41,316 KB
testcase_17 AC 147 ms
41,680 KB
testcase_18 AC 148 ms
41,076 KB
testcase_19 AC 151 ms
41,764 KB
testcase_20 AC 152 ms
41,660 KB
testcase_21 AC 155 ms
41,896 KB
testcase_22 AC 149 ms
41,196 KB
testcase_23 AC 147 ms
41,536 KB
testcase_24 AC 148 ms
41,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		double a, b, ra, rb, ca, cb, ans;
		ra = sc.nextDouble();
		rb = sc.nextDouble();
		a = sc.nextDouble();
		b = sc.nextDouble();
		ca = b*ra/rb;
		cb = a*rb/ra;
		if(a > ca){
			System.out.println(ca+b);
		} else if(b > cb){
			System.out.println(a+cb);
		} else {
			System.out.println(a+b);
		}
	}
}
0