結果

問題 No.236 鴛鴦茶
ユーザー Teruya-HimakiTeruya-Himaki
提出日時 2017-10-06 12:42:43
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 269 bytes
コンパイル時間 1,441 ms
コンパイル使用メモリ 166,020 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-17 00:22:37
合計ジャッジ時間 2,259 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 19 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main(){
    int a,b,x,y;cin>>a>>b>>x>>y;
    if(a*y<=b*x){
        cout<<fixed<<setprecision(7)<<(double)y*(a+b)/b<<endl;
    }else{
        cout<<fixed<<setprecision(7)<<(double)x*(a+b)/b<<endl;
    }
    return 0;
}
0