結果

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

ソースコード

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)y*(a+b)/b<<endl;
    }
    return 0;
}
0