結果
問題 | No.453 製薬会社 |
ユーザー |
|
提出日時 | 2016-12-04 00:32:39 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 577 bytes |
コンパイル時間 | 1,609 ms |
コンパイル使用メモリ | 165,284 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-27 17:17:00 |
合計ジャッジ時間 | 1,861 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 9 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i)) #define each(itr,c) for(__typeof(c.begin()) itr=c.begin(); itr!=c.end(); ++itr) #define all(x) (x).begin(),(x).end() #define pb push_back #define fi first #define se second int main() { double C,D; cin >>C >>D; double a=4*(5*C-2*D)/13; double ans=0; if(a<0) ans=2000*7/2*C; else { double b=-21*a/8+7*C/2; if(b<0) ans=1000*4*D; else ans=1000*a+2000*b; } printf("%.10f\n", ans); return 0; }