結果

問題 No.236 鴛鴦茶
ユーザー 37zigen37zigen
提出日時 2016-03-29 17:36:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 372 bytes
コンパイル時間 1,948 ms
コンパイル使用メモリ 74,632 KB
実行使用メモリ 42,236 KB
最終ジャッジ日時 2024-06-28 13:03:23
合計ジャッジ時間 6,471 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
41,952 KB
testcase_01 AC 148 ms
42,028 KB
testcase_02 AC 145 ms
41,928 KB
testcase_03 AC 133 ms
41,064 KB
testcase_04 AC 147 ms
41,612 KB
testcase_05 AC 144 ms
41,676 KB
testcase_06 AC 144 ms
41,612 KB
testcase_07 AC 144 ms
41,560 KB
testcase_08 AC 143 ms
41,384 KB
testcase_09 AC 143 ms
41,636 KB
testcase_10 AC 144 ms
41,716 KB
testcase_11 AC 144 ms
41,564 KB
testcase_12 AC 144 ms
41,960 KB
testcase_13 AC 145 ms
41,956 KB
testcase_14 AC 141 ms
42,236 KB
testcase_15 AC 142 ms
42,004 KB
testcase_16 AC 143 ms
42,068 KB
testcase_17 AC 145 ms
41,960 KB
testcase_18 AC 143 ms
42,088 KB
testcase_19 AC 141 ms
41,816 KB
testcase_20 AC 144 ms
41,796 KB
testcase_21 AC 144 ms
41,672 KB
testcase_22 AC 145 ms
41,932 KB
testcase_23 AC 144 ms
41,644 KB
testcase_24 AC 143 ms
41,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder236;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		double a=sc.nextDouble();
		double b=sc.nextDouble();
		double x=sc.nextDouble();
		double y=sc.nextDouble();
		if(x*b>=y*a){
			System.out.println(y+(y/b)*a);
		}else if(x*b<y*a){
			System.out.println(x+(x/a)*b);
		}
	}
}
0