結果
| 問題 |
No.236 鴛鴦茶
|
| コンテスト | |
| ユーザー |
moti
|
| 提出日時 | 2015-07-18 03:29:18 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 427 bytes |
| コンパイル時間 | 622 ms |
| コンパイル使用メモリ | 83,124 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-28 12:53:01 |
| 合計ジャッジ時間 | 1,373 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 23 |
ソースコード
#include <iostream>
#include <algorithm>
#include <cmath>
#include <vector>
#include <complex>
#include <queue>
#include <set>
#include <map>
#include <iomanip>
using namespace std;
#define REP(i,a,b) for(int i=a;i<(int)b;i++)
#define rep(i,n) REP(i,0,n)
typedef long long ll;
int main() {
int a, b, x, y; cin >> a >> b >> x >> y;
cout << setprecision(10) << (a+b)*min((double)x/a, (double)y/b) << endl;
return 0;
}
moti