結果

問題 No.236 鴛鴦茶
ユーザー spaciaspacia
提出日時 2015-12-29 19:14:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 642 bytes
コンパイル時間 1,978 ms
コンパイル使用メモリ 74,936 KB
実行使用メモリ 52,012 KB
最終ジャッジ日時 2024-09-19 08:25:58
合計ジャッジ時間 4,108 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,196 KB
testcase_01 AC 49 ms
50,252 KB
testcase_02 AC 49 ms
50,256 KB
testcase_03 AC 50 ms
49,916 KB
testcase_04 AC 50 ms
50,036 KB
testcase_05 WA -
testcase_06 AC 49 ms
50,108 KB
testcase_07 WA -
testcase_08 AC 49 ms
50,256 KB
testcase_09 WA -
testcase_10 AC 48 ms
50,068 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 49 ms
50,420 KB
testcase_14 WA -
testcase_15 AC 50 ms
50,328 KB
testcase_16 AC 50 ms
49,980 KB
testcase_17 AC 49 ms
50,260 KB
testcase_18 AC 50 ms
50,208 KB
testcase_19 AC 49 ms
50,420 KB
testcase_20 AC 49 ms
50,228 KB
testcase_21 AC 50 ms
50,248 KB
testcase_22 AC 48 ms
49,904 KB
testcase_23 WA -
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 (y < x) {
			out(x + ((double)x / a) * b);
		} else {
			out(Math.min(x , y) * 2);
		}
		
	}
}
0