結果

問題 No.236 鴛鴦茶
ユーザー marumaru
提出日時 2016-03-22 19:57:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 3,389 ms
コンパイル使用メモリ 74,372 KB
実行使用メモリ 41,704 KB
最終ジャッジ日時 2024-06-28 13:03:05
合計ジャッジ時間 7,310 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,472 KB
testcase_01 AC 130 ms
41,580 KB
testcase_02 AC 115 ms
41,304 KB
testcase_03 AC 129 ms
41,156 KB
testcase_04 AC 131 ms
41,440 KB
testcase_05 AC 132 ms
41,640 KB
testcase_06 AC 132 ms
41,640 KB
testcase_07 AC 134 ms
41,704 KB
testcase_08 AC 132 ms
41,428 KB
testcase_09 AC 130 ms
41,300 KB
testcase_10 AC 128 ms
41,452 KB
testcase_11 AC 129 ms
41,628 KB
testcase_12 AC 128 ms
41,580 KB
testcase_13 AC 132 ms
41,572 KB
testcase_14 AC 119 ms
40,244 KB
testcase_15 AC 137 ms
41,552 KB
testcase_16 AC 126 ms
41,396 KB
testcase_17 AC 130 ms
41,676 KB
testcase_18 AC 125 ms
41,408 KB
testcase_19 AC 125 ms
41,432 KB
testcase_20 AC 130 ms
41,424 KB
testcase_21 AC 118 ms
41,136 KB
testcase_22 AC 129 ms
41,216 KB
testcase_23 AC 127 ms
41,516 KB
testcase_24 AC 127 ms
41,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class yukicoder_236 {
	public static void main(String[] args) {
		Scanner stdIn = new Scanner(System.in);
		
		int a = stdIn.nextInt();
		int b = stdIn.nextInt();
		int x = stdIn.nextInt();
		int y = stdIn.nextInt();
		
		double ax = (double)x / a;
		double by = (double)y / b;
		
		if (ax >= by) {
			System.out.println((a + b) * by);
		} else {
			System.out.println((a + b) * ax);
		}
	}
}
0