結果
問題 | No.236 鴛鴦茶 |
ユーザー |
![]() |
提出日時 | 2019-07-19 14:12:14 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 168 bytes |
コンパイル時間 | 1,980 ms |
コンパイル使用メモリ | 157,660 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-26 00:04:45 |
合計ジャッジ時間 | 2,478 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 17 WA * 6 |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,k,o; cin>>a>>b>>k>>o; double kk=k+k*1.0/a*b; double oo=o+o*1.0/b*a; cout<<min(kk,oo)<<endl; }