結果

問題 No.236 鴛鴦茶
ユーザー 8130Tsk8130Tsk
提出日時 2015-08-19 00:51:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 3,498 ms
コンパイル使用メモリ 74,804 KB
実行使用メモリ 41,456 KB
最終ジャッジ日時 2024-06-28 12:55:29
合計ジャッジ時間 7,760 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
40,984 KB
testcase_01 AC 137 ms
41,008 KB
testcase_02 AC 136 ms
41,456 KB
testcase_03 AC 137 ms
41,384 KB
testcase_04 AC 135 ms
40,844 KB
testcase_05 AC 120 ms
40,508 KB
testcase_06 AC 135 ms
41,112 KB
testcase_07 AC 137 ms
41,076 KB
testcase_08 AC 134 ms
40,848 KB
testcase_09 AC 134 ms
41,108 KB
testcase_10 AC 124 ms
39,836 KB
testcase_11 AC 133 ms
41,364 KB
testcase_12 AC 132 ms
41,248 KB
testcase_13 AC 133 ms
41,148 KB
testcase_14 AC 135 ms
40,976 KB
testcase_15 AC 132 ms
41,220 KB
testcase_16 AC 133 ms
41,084 KB
testcase_17 AC 133 ms
40,952 KB
testcase_18 AC 134 ms
41,280 KB
testcase_19 AC 134 ms
40,708 KB
testcase_20 AC 135 ms
40,988 KB
testcase_21 AC 136 ms
40,920 KB
testcase_22 AC 137 ms
41,140 KB
testcase_23 AC 135 ms
41,172 KB
testcase_24 AC 134 ms
41,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No236 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		int x = sc.nextInt();
		int y = sc.nextInt();
		
		double w1=x*b/a - y;
		double w2=y*a/b - x;
		
		double d;
		
		if(w1<0){
			d = (double)x*b/a + x;
		}else if(w2<0){
			d = (double)y*a/b + y;
		}else{
			d = x+y;
		}
		
		System.out.printf("%.8f\n", d);
	}

}
0