結果
問題 | No.236 鴛鴦茶 |
ユーザー | wkwkes |
提出日時 | 2015-07-05 22:26:28 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 629 bytes |
コンパイル時間 | 629 ms |
コンパイル使用メモリ | 72,188 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 12:48:57 |
合計ジャッジ時間 | 1,352 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 23 |
ソースコード
#include <stdio.h> #include <stdlib.h> #include <iostream> #include <vector> #include <string> #include <queue> #include <algorithm> #include <math.h> #include <utility> #include <set> #include <map> #include <cstring> #include <cstdio> #include <stack> #include <cmath> #define INF 10000000000 #define MOD 10000000007 #define rep(i,n) for(int i =0;i<n;i++) using namespace std; typedef long long int ll; typedef pair<int, int> i_i; int main(){ double a,b,x,y; cin >> a >> b >> x >> y; double ans ; if (x*b/a<=y) { ans = x + x*b/a; }else{ ans = y + y*a/b; } printf("%.6lf\n",ans); }