結果

問題 No.236 鴛鴦茶
ユーザー kotatsugamekotatsugame
提出日時 2016-12-21 15:58:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 154 bytes
コンパイル時間 1,587 ms
コンパイル使用メモリ 165,912 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-08 09:29:13
合計ジャッジ時間 2,465 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
5,376 KB
testcase_07 WA -
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 2 ms
5,376 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:2:21: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    2 | using namespace std;main(){double a,b,c,d;cin>>a>>b>>c>>d;cout<<fixed<<setprecision(6)<<max(min(c/a*b,d),min(d/b*a,c))*2.0<<endl;}
      |                     ^~~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;main(){double a,b,c,d;cin>>a>>b>>c>>d;cout<<fixed<<setprecision(6)<<max(min(c/a*b,d),min(d/b*a,c))*2.0<<endl;}
0