結果

問題 No.453 製薬会社
ユーザー imulanimulan
提出日時 2016-12-04 00:32:39
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 2,044 ms
コンパイル使用メモリ 163,224 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-18 12:17:22
合計ジャッジ時間 2,179 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0