結果
問題 | No.236 鴛鴦茶 |
ユーザー |
![]() |
提出日時 | 2015-12-28 21:41:05 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 183 bytes |
コンパイル時間 | 176 ms |
コンパイル使用メモリ | 34,524 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-28 12:59:50 |
合計ジャッジ時間 | 896 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 23 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:6:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 6 | scanf("%lf%lf%lf%lf",&a,&b,&c,&d); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<stdio.h> #include<algorithm> using namespace std; int main(){ double a,b,c,d; scanf("%lf%lf%lf%lf",&a,&b,&c,&d); c=min(c,d/b*a); d=min(d,c/a*b); printf("%.12f\n",c+d); }