結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,784 KB
testcase_01 AC 52 ms
36,904 KB
testcase_02 AC 52 ms
36,728 KB
testcase_03 AC 51 ms
36,752 KB
testcase_04 AC 50 ms
36,488 KB
testcase_05 WA -
testcase_06 AC 51 ms
36,940 KB
testcase_07 AC 50 ms
36,804 KB
testcase_08 AC 49 ms
36,956 KB
testcase_09 AC 52 ms
36,804 KB
testcase_10 AC 52 ms
37,220 KB
testcase_11 AC 50 ms
36,804 KB
testcase_12 WA -
testcase_13 AC 53 ms
36,788 KB
testcase_14 WA -
testcase_15 AC 50 ms
37,084 KB
testcase_16 AC 51 ms
36,300 KB
testcase_17 AC 51 ms
36,776 KB
testcase_18 AC 50 ms
36,696 KB
testcase_19 AC 50 ms
36,808 KB
testcase_20 AC 51 ms
37,016 KB
testcase_21 AC 50 ms
36,312 KB
testcase_22 AC 52 ms
36,784 KB
testcase_23 AC 51 ms
36,616 KB
testcase_24 AC 48 ms
37,104 KB
権限があれば一括ダウンロードができます

ソースコード

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) {
			double d = (double)y / b * a;
			out(d <= x ? y + d : x + ((double)x / a * b));
		} else if (b < a) {
			double d = (double)x / a * b;
			out(d <= y ? x + d : y + ((double)y / a * b));
		} else {
			out(Math.min(x , y) * 2);
		}
		
	}
}
0