結果

問題 No.236 鴛鴦茶
ユーザー spaciaspacia
提出日時 2015-12-29 20:39:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 642 bytes
コンパイル時間 1,795 ms
コンパイル使用メモリ 75,392 KB
実行使用メモリ 50,448 KB
最終ジャッジ日時 2024-09-19 08:26:03
合計ジャッジ時間 3,849 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,452 KB
testcase_01 AC 50 ms
36,308 KB
testcase_02 AC 52 ms
36,996 KB
testcase_03 AC 51 ms
36,804 KB
testcase_04 AC 52 ms
36,448 KB
testcase_05 WA -
testcase_06 AC 49 ms
36,540 KB
testcase_07 AC 53 ms
36,764 KB
testcase_08 AC 50 ms
36,980 KB
testcase_09 AC 50 ms
37,284 KB
testcase_10 AC 52 ms
36,896 KB
testcase_11 AC 51 ms
37,000 KB
testcase_12 WA -
testcase_13 AC 53 ms
36,768 KB
testcase_14 WA -
testcase_15 AC 51 ms
37,104 KB
testcase_16 AC 51 ms
37,100 KB
testcase_17 AC 52 ms
36,756 KB
testcase_18 AC 50 ms
37,000 KB
testcase_19 AC 50 ms
36,992 KB
testcase_20 AC 49 ms
36,576 KB
testcase_21 AC 50 ms
36,976 KB
testcase_22 AC 51 ms
36,760 KB
testcase_23 AC 50 ms
36,868 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main236 {
	
	public static void out (Object out) {
		System.out.println(out);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		String[] line = br.readLine().split(" ");
		int a = Integer.parseInt(line[0]);
		int b = Integer.parseInt(line[1]);
		int x = Integer.parseInt(line[2]);
		int y = Integer.parseInt(line[3]);
		
		if (a < b) {
			out(y + ((double)y / b * a));
		} else if (b < a) {
			out(x + ((double)x / a * b));
		} else {
			out(Math.min(x , y) * 2);
		}
		
	}
}
0