結果

問題 No.236 鴛鴦茶
ユーザー YamaKasa
提出日時 2018-05-18 17:22:31
言語 Java
(openjdk 23)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 436 bytes
コンパイル時間 2,002 ms
コンパイル使用メモリ 74,112 KB
実行使用メモリ 41,672 KB
最終ジャッジ日時 2024-06-28 13:45:28
合計ジャッジ時間 6,250 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int A = scan.nextInt();
		int B = scan.nextInt();
		int X = scan.nextInt();
		int Y = scan.nextInt();
		scan.close();
		double k1 = (double) Y * A / B;
		double k2 = (double) X * B / A;
		double ans = 0;
		if(X - k1 >= 0) {
			ans = k1 + Y;
		}else {
			ans = k2 + X;
		}
		System.out.println(ans);
	}
}
0